I am trying to establish a connection between Centura and COM.dll. (Downloaded from http://download.resip.fr to import the database)
Centura requires that the .tlb file can communicate with this component. I usually used regasm /tlbto generate .tlb, but browsing, because it is COM.dll, is not possible.
I found that I can use tlbexp for .NET dll: http://msdn.microsoft.com/en-us/library/hfzzah2c(v=vs.80).aspx
I tried this, knowing that this probably will not succeed (since I have COM.dll). I got this error:
TlbExp: error TX0000: Could not load file or assembly file: /// C: \ Windows \ system32 \ ResipBcb.dll or one of its dependencies. The module is expected to contain an assembly manifest.
Using Dependency Walker I noticed that you have no two DLLs left. I found ieshims.dll on the Internet, but I can not find wer.dll. See this question .
I do not know if this file is missing due to tlbexp corruption?
To summarize, my question is: How do I get .tlb from this .dll? I can not find a way to extract .tlb from this COM.dll.
Regards, Clint Cambier
source
share