Switchboard maximize at start up

A

ArcticWolf

Hi ,

How can I get my Switchboard to Maximize at startup please. It currently is
minimized when I open the Db and always have to click to max it. Anyone know
how to do it automatically on startup please?

Thanks in advance,

Peter
 
K

Kris Scorup

1. Open the Switchboard in Design view
2. View the form's properties
3. On the Events page, let "[Event Procedure]" be the event, and press the
". . ." for the form's OnOpen event to enter the module behind the Switchboard
3. Add the following code somewhere in the event:
DoCmd.Maximize

That should do it.

-Kris
 
A

ArcticWolf

Works perfect, thanks for the swift replt Kris :)

ATB

AW

Kris Scorup said:
1. Open the Switchboard in Design view
2. View the form's properties
3. On the Events page, let "[Event Procedure]" be the event, and press the
". . ." for the form's OnOpen event to enter the module behind the Switchboard
3. Add the following code somewhere in the event:
DoCmd.Maximize

That should do it.

-Kris

ArcticWolf said:
Hi ,

How can I get my Switchboard to Maximize at startup please. It currently is
minimized when I open the Db and always have to click to max it. Anyone know
how to do it automatically on startup please?

Thanks in advance,

Peter
 
S

Stockwell43

Hi ArticWolf,

Put this code:

DoCmd.Maximize

In the forms OpenEvent. That should do the trick.
 

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