Hi all,
I have a program made in Excel VBA which works on UserForms only & I need to run them on different Office versions: Office 2007 32 Bit, Office 2016 32 Bit & Office 2016 64 Bit, I’m having a problem with showing Calendar control, which I need to work on any office version listed above.
Any Excel created calendar or at least to show calendar from other programs, like Windows calculator, which shows with code:
Any Idea?
Thank you in advance
I have a program made in Excel VBA which works on UserForms only & I need to run them on different Office versions: Office 2007 32 Bit, Office 2016 32 Bit & Office 2016 64 Bit, I’m having a problem with showing Calendar control, which I need to work on any office version listed above.
Any Excel created calendar or at least to show calendar from other programs, like Windows calculator, which shows with code:
SQL:
'%SystemRoot%\system32\calc.exe
Dim stAppName As String
stAppName = "[B]C:\Windows\System32\calc.exe[/B]"
Call Shell(stAppName, 1)
Any Idea?
Thank you in advance