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.