How to register a component?
COM
3
Posts
3
Posters
0
Views
1
Watching
-
look for this exe
%sys%\regsvr32.exe
for registring the component
[Vote One Here, Complete my Survey....] Alok Gupta
visit me at http://www.thisisalok.tk "I Think Believe this Will Help" -
It depends on the type of server you are making. If it is an in-process server (dll), at the command prompt you would type "regsvr32 filename.dll" (to unregister, you would use the '/u' switch prior to the filename.) If it is an out-of-process server (exe) then you would type "filename.exe /regserver" (to unregister, use "filename.exe /unregserver"). Hope that helps. -Erik