Menu opens minimized from a shortcut

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

Guest

When I open my database from a short cut or clicking on the database name, it
opens the menu minimized. However, if I start Access first, its opens the
menu in normal size. Can anyone tell me how to fix this problem?
 
Dale said:
When I open my database from a short cut or clicking on the database name, it
opens the menu minimized. However, if I start Access first, its opens the
menu in normal size. Can anyone tell me how to fix this problem?


Put the following code in the menu form's Open event (click the ... icon and
choose Code Builder):

Private Sub Form_Open(Cancel as Integer)
DoCmd.Maximize
End Sub
 
This problem only occurs on one computer. All other computers using the same
database and menus open maximized. Thanks for your reply and I will try the
solution.
 

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