Re-writing COM DLLs in C#.net

G

Guest

Hi,
I have some VC++ COM DLLs and want to reuse the same DLLs in C#.net
application with Add Reference but I have a requirement for my application
that therre should not be any DLLs for registration in the installation.
Without rewriting the VC++ COM DLLs in C#.net and without registration
concept can I use the DLLs in the C#.net application. Ofcourse I feel it is
not possible but I want to clarify from the news group.
I think I have to rewrite the entire DLLs in C#.net. Greatly appreciate for
your replies ...
 
C

Chris Dunaway

Hi,
I have some VC++ COM DLLs and want to reuse the same DLLs in C#.net
application with Add Reference but I have a requirement for my application
that therre should not be any DLLs for registration in the installation.
Without rewriting the VC++ COM DLLs in C#.net and without registration
concept can I use the DLLs in the C#.net application. Ofcourse I feel it is
not possible but I want to clarify from the news group.
I think I have to rewrite the entire DLLs in C#.net. Greatly appreciate for
your replies ...

Do a Google search for "Registration Free COM" and you should find
some articles that explain how to do it.

Chris
 
G

Guest

Thanks for your reply. I got Reg-Free COM concept but my requirement is on
Windows 2000, XP, CE & Vista OS but it seems this concept works only on
Windows XP or higher.
 
N

Nicholas Paldino [.NET/C# MVP]

If that is the case, then you have no choice but to register the dll in
order to use it. That, or do a full conversion of the DLL into managed
code, so that there is no registration required.
 

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