Close All Forms

jboyle

New member
Local time
Today, 18:16
Joined
Nov 18, 2000
Messages
53
I have a main navigation form. From this navigation form, the user can select other forms to go to. Up to three or four forms deep. I want the user to have the ability to go back to the previous form (Which I do by a simple close form. However, if they choose to get back to the navigation screen directly, I don't know how to close all of the previously opened forms.
 
You could create a macro with the following

openform "Navigation form"
closeform "form1"
closeform "form2"
closeform "form3"

and run it from a command button.
Hope this helps
Andy
 

Users who are viewing this thread

Back
Top Bottom