J Jean-Paul De Winter Mar 22, 2005 #1 Hi, I would like to open a form maximized.... whet is the correct syntax. Thanks
J Jeff Conrad Mar 22, 2005 #2 In the Form's Open event put a DoCmd.Maximize statement: Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize End Sub -- Jeff Conrad Access Junkie Bend, Oregon Bend's idea of 'Spring Break': http://www.tripcheck.com/RoadCams/RoadCams_Bend.htm
In the Form's Open event put a DoCmd.Maximize statement: Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize End Sub -- Jeff Conrad Access Junkie Bend, Oregon Bend's idea of 'Spring Break': http://www.tripcheck.com/RoadCams/RoadCams_Bend.htm
F fredg Mar 22, 2005 #3 Hi, I would like to open a form maximized.... whet is the correct syntax. Thanks Click to expand... Code the Form's Open event: DoCmd.Maximize
Hi, I would like to open a form maximized.... whet is the correct syntax. Thanks Click to expand... Code the Form's Open event: DoCmd.Maximize