Startup Problems

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

Guest

2 problems with my main menu. I used the tools/startup and choose a main
menu. Now, I cannot see my tables or queries. How can I change the options
of my startup so I can get back to seeing this. Next, when the main page
opens, it opens as a separate window. How do I get it to open as a full
window (and then be able to "x" out of the main page so I can see my tables?
Thanks
 
Hi
2 problems with my main menu. I used the tools/startup and choose a main
menu. Now, I cannot see my tables or queries. How can I change the options
of my startup so I can get back to seeing this.

Press the shift key as you are opening your database
Next, when the main page
opens, it opens as a separate window. How do I get it to open as a full
window (and then be able to "x" out of the main page so I can see my tables?
Thanks

Open the form in design view and click the form properties. Go to the Event
column and select OnLoad. Click the ... on the build (build) and select code
builder. insert this

Private Sub Form_Activate()
DoCmd.Maximize
End Sub

Close the code builder and save the form.

Your form will now open Maximize(ed)

Hope this is helpful

--
Wayne
Manchester, England.
Not an expert.
Enjoy whatever it is you do.
 

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