TIPS

For Application to end when 'x'(close button) is press - add "Application.Exit' on formClosed event on all forms
----------------------------------------------------------------------------------------------
Private Sub Form1_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
        Application.Exit()
    End Sub
----------------------------------------------------------------------------------------------

No comments: