Exiting Forms

  • Thread starter Thread starter Craig
  • Start date Start date
C

Craig

I set up a button on a form that says, "Go back to the
Main Switchboard." How do I get that form to also exit
when that button is pushed? Right now the user is
returned to the main switchboard, but the form they were
on stays in the background. Thanks for your Help!!
 
When you are placing the button on the form you need to
be sure to have the Wizzard turned on. Part of the
Wizzard is the selection of what function you want the
button to perform. Select Form Operations from the
Categories list and then select Form Close from the list
of Actions.

Hope this helps.

Byron
 
Hi Craig,
In the code for the button put the following
underneath the code that opens the switchboard form:
me.close
or
me.visible = false if you need to keep
the form open for other reasons.

Hope This Helps
 
Back
Top