reopening the database window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Upon startup, I have the database window set for not being visible. Instead,
I have a form on the screen. I want a button on the form that will close the
form and open the database window. How do I do this?
 
Put the following in the button's Click event procedure:

DoCmd.SelectObject acForm, Me.Name, True
DoCmd.Close acForm, Me.Name

Ken Sheridan
Stafford, England
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top