S scottk Registered User. Local time Today, 13:53 Joined Aug 20, 2001 Messages 29 Aug 23, 2001 #1 How do I prevent my forms from maximizing to fill the whole screen when they are opened? I would like for them to open to the size I specify.
How do I prevent my forms from maximizing to fill the whole screen when they are opened? I would like for them to open to the size I specify.
Z zzz Registered User. Local time Today, 13:53 Joined Jul 1, 2001 Messages 12 Aug 23, 2001 #2 Private Sub Form_Open(Cancel As Integer) On Error GoTo Form_Open_Err DoCmd.MoveSize 4320, 1440, 5184, 4896 Form_Open_Exit: Exit Sub Form_Open_Err: MsgBox Error$ Resume Form_Open_Exit End Sub
Private Sub Form_Open(Cancel As Integer) On Error GoTo Form_Open_Err DoCmd.MoveSize 4320, 1440, 5184, 4896 Form_Open_Exit: Exit Sub Form_Open_Err: MsgBox Error$ Resume Form_Open_Exit End Sub
P Peter D Registered User. Local time Today, 13:53 Joined Sep 7, 2000 Messages 188 Aug 24, 2001 #3 A "DoCmd.Restore" in your form OnOpen, or OnActivate event procedure may help. Peter De Baets Peter's Software - MS Access Shareware and Freeware http://www.peterssoftware.com
A "DoCmd.Restore" in your form OnOpen, or OnActivate event procedure may help. Peter De Baets Peter's Software - MS Access Shareware and Freeware http://www.peterssoftware.com