Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want it gone!

Status
Not open for further replies.

mama16

MIS
Oct 22, 2004
125
US
I have a switchbord, when someone clicks to see one form, that form opens up, if the person tries to go to another form from the second form it can do so but the second form won't hide or dissapear,it stays there. how can I make it dissapear? Is the problem in load or unload of the form?
 
have you tried closing the form after opening another form ie
docmd.openform "newform"
docmd.close "current form"

Hope this helps
Hymn
 
No, because the second form(contains customer information) there is a cmdbutton for adding a customer. Whenever its clicked another form for adding pops up. Then, I'd like for the customer info form to dissapear(close) and just keep the form for adding on the screen.
 
How about....

DoCmd.OpenForm "3rdForm"
Docmd.OpenForm "2ndForm", , , , , acHidden


Randy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top