Form opens on startup, open it maximized

G

Guest

Okay, I know that by going into Tools: Startup, you can set the form to open
on start up and even block the backend database from opening at all. The
problem I am having is I cannot figure out how to make the form open
maximized. It doesn't seem to be an option. My form keeps opening minimized
causing the user to have the click the maximize box to see it on the full
screen. I want it to automatically open to full screen (maximized) view. I am
using Access 2002. Can this be done?

--
Have a nice day!

~Paul
Express Scripts,
Charting the future of pharmacy
 
W

Wolfgang Kais

Hello Paul.

Paul (ESI) said:
[...]
Okay, I know that by going into Tools: Startup, you can set the form
to open on start up and even block the backend database from
opening at all. The problem I am having is I cannot figure out how
to make the form open maximized. It doesn't seem to be an option.

That's true, but the form can to that int the "On Open" event.
My form keeps opening minimized causing the user to have the
click the maximize box to see it on the full screen. I want it to
automatically open to full screen (maximized) view.
I am using Access 2002. Can this be done?

Create an event procedure for the Open event of the form that contains

DoCmd.Maximize
 
G

Guest

Thanks to you both! This worked just fine!

--
Have a nice day!

~Paul
Express Scripts,
Charting the future of pharmacy


Wolfgang Kais said:
Hello Paul.

Paul (ESI) said:
[...]
Okay, I know that by going into Tools: Startup, you can set the form
to open on start up and even block the backend database from
opening at all. The problem I am having is I cannot figure out how
to make the form open maximized. It doesn't seem to be an option.

That's true, but the form can to that int the "On Open" event.
My form keeps opening minimized causing the user to have the
click the maximize box to see it on the full screen. I want it to
automatically open to full screen (maximized) view.
I am using Access 2002. Can this be done?

Create an event procedure for the Open event of the form that contains

DoCmd.Maximize
 
G

Guest

I have the same question, I was able to do too this way, but I was trying to
do it via another approach using a macro. On the 'open' event of this form,
I wrote a single row of 'restore' but it didn't work...any ideas how to make
this work without a VB command

Wolfgang Kais said:
Hello Paul.

Paul (ESI) said:
[...]
Okay, I know that by going into Tools: Startup, you can set the form
to open on start up and even block the backend database from
opening at all. The problem I am having is I cannot figure out how
to make the form open maximized. It doesn't seem to be an option.

That's true, but the form can to that int the "On Open" event.
My form keeps opening minimized causing the user to have the
click the maximize box to see it on the full screen. I want it to
automatically open to full screen (maximized) view.
I am using Access 2002. Can this be done?

Create an event procedure for the Open event of the form that contains

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

Top