Windows Forms

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top