Hi all,
I wrote a very simple user control in C#, and I'm trying to access it from my C++/MFC code. The control contains a single label in it. Here's the control code itself:
namespace HelloCom {
[Guid("F0AE1BB2-A840-4341-B785-D8A54C81E643")]
public interface HelloCom {
}
[Guid("111DCC11-900D-431c-B3A0-4B95C539A47D")]
public partial class HelloComImpl : UserControl, HelloCom {
public HelloComImpl() {
InitializeComponent();
}
}
}
Here's what I've done so far:
- Signed my control with a strong key
- Clicked the "expose assembly to COM interop" and "make visible to COM" options
- regasm HelloCom.dll /tlb:HelloCom.tlb
- gacutil -i HelloCom.dll
Mike GoldPosted Feb 22, 2007, 2:37 PM
http://msdn2.microsoft.com/en-us/library/b1kyh79x(VS.80).aspx
Best,
-Mike G