Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Switchboard Full Screen 1

Status
Not open for further replies.

kvena

Technical User
Aug 5, 2005
19
0
0
US
does anyone know how to get the switchboard to open in full screen?

Kelly
 
kvena,
In design view, go to the properties window. On the event tab select On Open, choose [Event Procedure] and hit the elipsis button. This should bring you to the VBE window which should look something like this:
Code:
Private Sub Form_Open(Cancel As Integer)

End Sub

Add the following line (in bold):
Code:
Private Sub Form_Open(Cancel As Integer)
[b]DoCmd.Maximize[/b]
End Sub

Once you save the form it will now Maximize when it is opened.

Hope this helps,
CMP

[small]For the best results do what I'm thinking, not what I'm saying.[/small]
(GMT-07:00) Mountain Time (US & Canada)
 
Thank you very much. This worked perfectly!!!

Kelly
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top