G
Guest
I have a parent Windows form that opens another form with the following code.
MyChild = New frmMyForm
MyChild.Show().
In MyChild, I want to do things and still be able to use the parent form.
For this reason, ShowDialog() is not an option. When I close MyChild, I want
the parent form to respond to system changes made by MyChild.
My thinking is that I need to create an Event in parent that fires when
MyChild closes. I have no idea where to begin.
Can someone point me in the right directioni?
MyChild = New frmMyForm
MyChild.Show().
In MyChild, I want to do things and still be able to use the parent form.
For this reason, ShowDialog() is not an option. When I close MyChild, I want
the parent form to respond to system changes made by MyChild.
My thinking is that I need to create an Event in parent that fires when
MyChild closes. I have no idea where to begin.
Can someone point me in the right directioni?