(AutoHotkey is really great!)
With AutoHotkey you can very easily get a date picker + small calendar utility displaying also the week numbers.
(This might avoid you implementing forms in vba.)
How to install
How to use
Now I have another one (Ctrl+.) that will open a small calendar like below:
It displays also the Week numbers.
If you hit Enter or OK it will write the selected date.
The code extract looks like:
; Ctrl+, | |
^,:: ; CurrentDate | |
FormatTime, CurrentDateTime,, yyyy-MM-dd | |
SendInput %CurrentDateTime% | |
return | |
; Ctrl+. | |
^.:: ; DatePicker | |
DatePicker(sDate) | |
If !sDate ; empty= cancel | |
return | |
FormatTime, sDate, %sDate%, yyyy-MM-dd | |
SendInput %sDate% | |
return | |
; ----------------------- SUBFUNCTIONS ------------------------------- | |
DatePicker(ByRef DatePicker){ | |
Gui, +LastFound | |
gui_hwnd := WinExist() | |
Gui, Add, MonthCal, 4 vDatePicker | |
Gui, Add, Button, Default , &OK | |
Gui Add, Button, x+0, Cancel | |
Gui, Show , , Date Picker Calendar | |
WinWaitClose, AHK_ID %gui_hwnd% | |
return | |
ButtonOK: | |
Gui, submit ;, nohide | |
Gui, Destroy | |
;Gui, Hide | |
return | |
GuiEscape: | |
ButtonCancel: | |
GuiClose: | |
DatePicker := "" | |
Gui, Destroy | |
return | |
} |
It is based on the AHK Gui MonthCal
In the line Gui, Add, MonthCal, 4 vDatePicker, the Options e.g. like 4 to display the Week numbers has to be placed before the last parameter for the value.
If you have some concerns about the week numbering see this forum topic: TL;DR: it isn't AHK fault but Microsoft's.