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...
- 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?
- picklefactorySep 25, 2023Copper ContributorSorry to hijack, slightly, but would this also work with Office 2010?
- Jack_AidOct 17, 2023Copper Contributor
In response to your question. Yes, Using these two OCX files, MSCOMCT2.OCX and MSCOMCTL.OCX. really works with Office 2010. I am currently using it now. However, it only works with 32-bit version of Office 2010 ---- but not the 64-bit version.