I have a project that fails to totally unload the app when the close button is selected ('X' in control box at top of the form). I have to put a button in the form to close the app completely from memory using something like:
Code:
Private Sub exitNow()
    Unload Me
End Sub
Why will the app not unload with the 'Close' button on the form itself? What can I do to force it to unload all the way?