How do I set database up so as takes full window size when opened

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

Guest

I have an access database which I downloaded from microsoft site and modified
to suit my needs. I want to set this database up so as when clicked on it
will open the form and automatically take full size of the window / screen.

I have tried to do this by going into design view in the form and dragging
the edges of the form window so as takes up full size of window, but whenever
I open the database again it just reverts back to its normal size.

Anyone know how to do this ?
 
Johnny2006 ha scritto:
I have an access database which I downloaded from microsoft site and modified
to suit my needs. I want to set this database up so as when clicked on it
will open the form and automatically take full size of the window / screen.

I have tried to do this by going into design view in the form and dragging
the edges of the form window so as takes up full size of window, but whenever
I open the database again it just reverts back to its normal size.

Anyone know how to do this ?


On Tools---->Start you can choose the SturtUp form, choose also to
False the Database Form...!

Now on SturtUp Form on Load Events:

Docmd.Maximize

and on Unload one

Docmd.Restore

@Alex
 
Back
Top