Closing a form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mwcapps
    New Member
    • Mar 2009
    • 16

    Closing a form

    I'm running an application that has several subsequent forms. I'd like to be able to close the individual form without closing the app. I've included my code and would appreciate any help.

    If RUS_Exit("Form Exit") Then

    Me.Close()
    Else
    e.Cancel = True
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    As long as the form that is called in the Application.Run () statement is not closed, you can open/close any of your other forms without exiting the application

    Comment

    Working...