I have created a dll and succsesfully registered it, but know i have changed my dir structure and the dll has been moved.
Now you've had the background, heres the question:
Is there any way of unregistering dll's?
Printable View
I have created a dll and succsesfully registered it, but know i have changed my dir structure and the dll has been moved.
Now you've had the background, heres the question:
Is there any way of unregistering dll's?
regsvr32 -u FullDLLPath
e.g;
regsvr32 - u "c:\winnt\mydll.dll"
will unregister mydll.dll.
same way you registered it with a /u in the params
if you run regsvr32 from the run command in the start menu... it will give you a message box with its accepted params /u is to unregister a DLL
http://www.vbforums.com/attachment.p...postid=1623465
Thanks for your replys.