Maximize Form on Open Dbase

J

Jenn

I have a form that opens when you select the database I have created.
Unfortuantely, the window is not maximized. Is there anyway to set maximize
the forms window as a default on Opening the database? Thanks in advance!
 
M

Mike Labosh

I have a form that opens when you select the database I have created.
Unfortuantely, the window is not maximized. Is there anyway to set
maximize
the forms window as a default on Opening the database? Thanks in advance!

Private Sub Form_Load()
DoCmd.Maximize
End Sub
 
J

Jenn

Perfect! Thanks Mike!

Mike Labosh said:
Private Sub Form_Load()
DoCmd.Maximize
End Sub

--
Peace & happy computing,

Mike Labosh, MCSD
"I have no choice but to believe in free will."
 
Top