I've got a network application on our server which needs access to the MS DatePicker control. I've got the following code at the top of my main program:
LOCAL lcCommand
lcCommand = "RUN RegSvr32.exe C:\windows\system\MsComct2.ocx /s"
&lcCommand
RELEASE lcCommand
First, it's not "silent".
Second, it's running every time the program starts. How can I detect if the control is already registered and only run this registration when the application is run for the first time on a different workstation?
LOCAL lcCommand
lcCommand = "RUN RegSvr32.exe C:\windows\system\MsComct2.ocx /s"
&lcCommand
RELEASE lcCommand
First, it's not "silent".
Second, it's running every time the program starts. How can I detect if the control is already registered and only run this registration when the application is run for the first time on a different workstation?