why ocx cannot be removed while in used..
n how do i register the same ocx in different path..
Printable View
why ocx cannot be removed while in used..
n how do i register the same ocx in different path..
1) Remove all instances of the ocx from your forms & modules.
2) The the regsvr32 program
plenderj,
I register my .dll's, ocx's, etc. by dragging and dropping them on regsvr32, but I have never 'unregistered' one. Do you have to use the command line? And what is the proper command to put on the command line?
You would use the "/u" switch :
regsvr32 /u myOCX.ocx
Thank you.