Form/Switchboard: fixed size

G

Guest

Hello:

I need to fix the size of my switchboard so that:

If:
1. minimized
2. maximized
3. on open
4. etc.

it's always the same size.

In design view it is a certain size, but I find it that often when I open a
different form then switch back to my switchboard, it's maximized. I need to
avoid that.

How does one keep it fixed, by option or code is fine, I"m comfortable with
both.

Thanks as always!!
pepe
 
V

Van T. Dinh

Use

DoCmd.Restore

in the Form_Activate Event.

If you don't want the user to re-size the Switchboard manually, set the
BorderStyle to None or Thin.

You can also annoy the hell out of the user to re-size the Form to whatever
it was by using the Form_Resize Event.
 
G

Guest

Van that worked just fine. Thank you.

Van T. Dinh said:
Use

DoCmd.Restore

in the Form_Activate Event.

If you don't want the user to re-size the Switchboard manually, set the
BorderStyle to None or Thin.

You can also annoy the hell out of the user to re-size the Form to whatever
it was by using the Form_Resize Event.
 

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

Similar Threads

Switchboard 1
Switchboard 6
Form size 2
Switchboard 1
Switchboard disappears 4
Switchboard restore down coding Office 2007 1
Open a form in filter by form datasheet view from Switchboard 5
switchboard question 5

Top