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: