So I am a Visual Basic 6 developer moving over to CLR and need an answer to a real newb question.
In Visual Basic 6, if you had an ActiveX control, you could reference that control and then have a statement essentially saying:
Public WithEvents YourControl (Emphasis on the "WithEvents" keyword)
What happen is that in Visual Basic you would then have a set of event handler functions for that control. You could simply choose them from a drop down list and an empty handler would be generated.
I am looking for the equivalent of that in VS2008 (Winform). How do I access that functionality in the Visual Studio 2008 IDE? I have the CLR DLL project referenced in my Winform project. I just need to know how to get access to the functions/classes of that CLR DLL.
Thanks!