Form1_Unload ..help please?
this annoys me.. i go through my program and build it but forget to tell it when it unloads it should end the program so i go back through all my forms to add it in.
in VB6 there was this drop-down list of commands it could do (click, dblclick, etc) but in .NET there isn't, at least not in the same place
so when i double click the form to open up the command and retype _Load to _Unload it still thinks it as unloading
help?
is this what you wanted ?
Code:
Private Sub Settings_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
'Your unloading code here
End Sub