Automatically opening a form

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

Guest

When you have a form automatically opening when you start up a database. Is
there a way to have the form take up the whole screen? Thanks.
 
I'm sure there are many ways of doing this, but heres the way i did it:

Create a macro with a "Maximise" Entry in it.

Then in the 'on open' property of the form select the name of this macro.

If you want any forms opened after this form not to be maximised you would
need to create a "Minimise" macro in the same way an select that in the forms
'on close' event
 
the macro need to be written as autoexec

ldiaz

rico said:
I'm sure there are many ways of doing this, but heres the way i did it:

Create a macro with a "Maximise" Entry in it.

Then in the 'on open' property of the form select the name of this macro.

If you want any forms opened after this form not to be maximised you would
need to create a "Minimise" macro in the same way an select that in the forms
'on close' event
 
Tony

If the forms opens automatically when the database is loaded, then you will
need to add the following line of code to the "ON LOAD " event of the form

DoCmd.Maximize
 

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