I have a class library developed in VB.NET. Inside there is a form with a
button1.
I add this class library to a VB6 Project.
I do a
Dim a as new classlibrary.fo rm1
SetParent a.GetHwnd, Me.hWnd
a.show
But now I have a question, if the user click on the Button1 in the
ClassLibrary, I want my VB6 to know that button1 is being click.
This is becase when button1 is clicked, vb6 needs to do some processing.
Anyone know how to do this?
Regards
Vanessa
button1.
I add this class library to a VB6 Project.
I do a
Dim a as new classlibrary.fo rm1
SetParent a.GetHwnd, Me.hWnd
a.show
But now I have a question, if the user click on the Button1 in the
ClassLibrary, I want my VB6 to know that button1 is being click.
This is becase when button1 is clicked, vb6 needs to do some processing.
Anyone know how to do this?
Regards
Vanessa
Comment