COM server in .Net
C#
3
Posts
2
Posters
3
Views
1
Watching
-
Hi, Does anyone know how to write a COM server in .Net? // Christian
-
Hi, Does anyone know how to write a COM server in .Net? // Christian
Create your .NET dll first Now use regasm on it. Now you can use this component using late binding if you want early binding use tlbexp in it to generate a type library file Nish
-
Create your .NET dll first Now use regasm on it. Now you can use this component using late binding if you want early binding use tlbexp in it to generate a type library file Nish
I'm looking for an example to create a out-of process local com server (.exe file) // christian