|
|
| Author |
Message |
Guest
|
Posted: Mon Nov 06, 2006 4:50 pm Post subject: COM with .net |
|
|
Need to create COM components in .net 1.1.
How do I do this?
Thank You. |
|
| Back to top |
|
 |
|
|
Cerebrus Guest
|
Posted: Mon Nov 06, 2006 7:25 pm Post subject: Re: COM with .net |
|
|
Saha wrote:
| Quote: | Need to create COM components in .net 1.1.
How do I do this?
Thank You.
|
..NET does not create COM components by default. You need to export your
..NET assembly as a Type library.
The following articles should get you up to speed on this :
1.
<http://msdn.microsoft.com/library/en-us/cpguide/html/cpconpackagingassemblyforcom.asp>
2. <http://msdn2.microsoft.com/en-us/library/ms973802.aspx>
3. Also see the "tlbexp.exe" tool reference in .NET documentation.
HTH,
Cerebrus. |
|
| Back to top |
|
 |
|