I have a program starting with FormA, and opens to Forms B, C, D, E, etc... When I close forms B, C, D, E, it doesn't close the program. So I added this tidbit of code:
This just causes the program to freeze. :(
Im sure theres a simple solution here :)
Ryan
Code:
Private Sub AnalysisMain_Closing(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.FormClosing
Me.Close()
End Sub
Im sure theres a simple solution here :)
Ryan