-
RegAsm
I am trying to register VB.net DLL with RegAsm.exe utility so that I can use that DLL in VB6 but I am getting some error and it's not creating any .TLB files can somebody suggest me what I am doing wrong? :confused:
error screenshot
http://www.geocities.com/mirag2001/regasm.JPG
-
Re: RegAsm
The error message specifically tells you what the problem is. Sign your assembly or don't use the /codebase switch. You sign an assembly from the curiously-named Signing tab of the project properties.
-
Re: RegAsm
after removing /codebase switch i am still getting secound error what to do with that error?
-
Re: RegAsm
Hmmm... didn't even see the second message. Should have opened my other eyes too. :blush: I've had limited experience with regasm myself but when I did use it the following commandline worked for me:
Code:
regasm /tlb:MyAssembly.tlb MyAssembly.dll
-
Re: RegAsm