PDA

Click to See Complete Forum and Search --> : Unregister ocx...


Inhumanoid
Dec 5th, 1999, 03:06 PM
How can I unregister an ocx ??

Vit
Dec 5th, 1999, 03:36 PM
In Windows Start\Run menu write
regsvr32 c:\windows\...\yourcontrol.ocx /u
and press OK

onerrorgoto
Dec 5th, 1999, 06:29 PM
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)
anders@zsystemdesign.se

Serge
Dec 5th, 1999, 06:35 PM
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
Serge_Dymkov@vertexinc.com
Access8484@aol.com
ICQ#: 51055819 (http://www.icq.com/51055819)

Crazy D
Dec 5th, 1999, 06:39 PM
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)