Automatiacally Maximizing the Switchboard

G

Gerry Duggan

Is it possible to have the main switchboard maximized
automatically upon opening an application. If so, how
would one go about doing this.

Any asssitance would be greatly appreciated.
 
R

Rick

you can place the following code in the on open event...


Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub


Hope that helps,

Rick
 
Top