Forum Discussion
Adding Microsoft Date Picker to Excel VBA Userform
You need to register the following TWO DLL's: MSCOMCT2.OCX & MSCOMCTL.OCX
Been using this date picker for years, and very happy with it...
- LeifViking4020Apr 05, 2023Copper Contributor
- KimickoMay 03, 2023Copper Contributor
Hi Leif
You can use DatePicker, ListView, etc with Office 2016 32 Bits (x86).
Download this two OCX files, MSCOMCT2.OCX and MSCOMCTL.OCX. To get them, search from internet, it's easy to get to them.
Copy the two files to C:\Windows\SysWOW64
To register them, use System Command as Administrator (Windows Key + R, type cmd and then press CTRL + MAYUSC, then Enter key)
Copy and paste the following:
regsvr32 "C:\Windows\SysWOW64\MSCOMCTL.OCX"
regsvr32 "C:\Windows\SysWOW64\MSCOMCT2.OCX"
Then, you can now choose these two from VBA and use them.
Hope it helps!
Regards
- DhanasekaranTMar 19, 2024Copper Contributor
Kimicko what about office 365 (2024) windows 64bit?