regasm.exe

S

Sara

I have written a class and tried to register it using regasm.exe using

regasm myTest.dll /tlb:myTest.tlb

tlb file got generated and i got dll registered successfully msg.

but when i go and see the reistry i am not able to see the clsid and
progid but the class got created.

Can anybody help me out in this issue.
 
C

Carlos J. Quintero [VB MVP]

Ensure that you have admin rights.

Use the /regfile:filename switch to generate a .reg file instead of
registering the assembly, and take a look at it to see what it should change
in the registry.

Or download the Regmon (Registry Monitor) utility and run it before
executing regasm.exe to spy the registry activity. You can add a filter to
show only activity from regasm.exe:*

http://www.sysinternals.com/Utilities/Regmon.html

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top