Change the font and button size in a switchboard.

E

elitt2

Is there a way to change the displayed size of the font and button in a
switchboard? How can I make the switchboard maximized when the db is opened?
 
F

fredg

Is there a way to change the displayed size of the font and button in a
switchboard?
Yes.

How can I make the switchboard maximized when the db is opened?

Code the Switchboard form's Open event:
DoCmd.Maximize
 
M

Michael H

Hi.

To change the button and font size, just open the switchboard form in design
mode, and change the properties of the controls as you would on any other
form.

-Michael
 
D

Douglas J Steele

It's just a form: open it in design mode, select the button(s) and change
the properties.
 
E

elitt2

I hate to bother you but could you be a little more specific. I was able to
change the font size but I am unable to determine the exact control that
changes the size of a button. There isn't a property that says "button size".
 
M

Michael H

Hi.

No bother. You can change the Width and Height properties for a switchboard
button, or you can click and drag using the button's resizing handles.

-Michael
 
Top