View Full Version : Startup Page


JLKRK
02-11-2000, 08:25 AM
I have a form that is set to open upon the opening of the database as my startup screen. How do I make it so the form is the full screen. Nobody will need to see the database behind the startup form so they don't need to see the command bars. Thanks, Jim

Peter Paul
02-11-2000, 09:05 AM
The way I like to do this is to make a macro for the event.

Build a macro and name it Autoexec. In it you can put in an OpenForm command, and then a Maximize command.

When you open the database, Access will read the Autoexec file and run it.

Hope it helps,

Peter Paul

[This message has been edited by Peter Paul (edited 02-11-2000).]

CST9999
02-11-2000, 02:13 PM
click on the code button in order to see the code behind the form and use this code (just copy and paste).

Private Sub Form_Load()
DoCmd.Maximize
End Sub

this should do the trick.

Carol
02-11-2000, 02:39 PM
If you want your database to cover the complete screen, you should also include a hide toolbar in with your autoexec command