Fill entire screen

  • Thread starter Thread starter quite a beginner
  • Start date Start date
Q

quite a beginner

Guest
I'm trying to make an "autostart" form (sort of database startup page) that fills the whole screen when started. It does fill the screen when I switch from design to view window, but when I really start the database, the size becomes smaller. Can anybody solve this problem? Thanks a lot in advance!!!
 
Just make a macro, with Maximize as the action. Then put the macro in the OnOpen event of the form. This will maximize the window when the form opens.
 
On Open Event
DoCmd.Maximize
 

Users who are viewing this thread

Back
Top Bottom