How can I unregister an ocx ??
Printable View
How can I unregister an ocx ??
In Windows Start\Run menu write
regsvr32 c:\windows\...\yourcontrol.ocx /u
and press OK
If you want I have a small ocx-registring program that allows you to rightclick on an ocx and choose register / unregister, then you dont need to mess with regsvr.
------------------
On Error Goto Bed :0)
[email protected]
I believe that the correct syntax is:
Regsvr32 /u YourOCX.ocx
If you have your OCX in the Windows or Windows/System then you don't have to type in the whole path, if you have your OCX in other location, then you will have to specify the full path.
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
Or, if you want to do it in code, without using regsvr, check out http://www.codeguru.com/vb and find the contest-link, the winner of the contest registers and unregisters dll's and ocx's in code (without shelling other apps)