Selecting form at start up

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

Guest

I have selected the form that is to appear at start up when I click on the
database. However, when I open the database, the form only opens into part
of the screen and not as the full screen view as I would like. Where can I
define the size of the form to fit the screen upon opening? Any ideas??
Thanks in advance.
 
In the Open event procedure of the form, inlcude this line of code:
DoCmd.Maximize
or use a macro that has the Maximize action.
 
Back
Top