maximize window

  • Thread starter Thread starter BBran
  • Start date Start date
B

BBran

In Access 2000 I had and Autoexec macro that maximized the database or
whatever window, when I opened the database. How do I accomplish the same
thing in 2007 without having to click the maximize button?
 
Does your DB open to a form? If so, you can use the below on the open and
load event of your form.

DoCmd.RunCommand acCmdAppMaximize

HTH
Roger
 
Back
Top