I have 2 forms. Form1 and Form2.
When Form2 is closing, how do I make Form2 to inform Form1 that Form2 is closed.
Do I need to use Delegate, if yes, how?
thanks.
|
|
|
You will need to first reference
|
|||||||||||
|
|
You can just create a custom event in Form2 and then make Form1 subscribe to it. Here's a nice and easy tutorial article for this: http://www.codeproject.com/KB/vb/StepByStepEventsInVBNET.aspx Edit: If you just need the event when it's closing, I'd go with Oded's solution since that's easier. |
||||
|
|