J Joel Oct 6, 2003 #1 I built a form but I want it to open maximized, how can I do that? Thanks in Advance. J
P Phill Oct 6, 2003 #2 Load up form properties Under the onactivate event run the following code DoCmd.Maximize
J jeff Oct 6, 2003 #3 -----Original Message----- I built a form but I want it to open maximized, how can I do that? Thanks in Advance. J . J Click to expand... Open your form in design mode go into properties, in the on open event build event with DoCmd.Maximize then End Sub.
-----Original Message----- I built a form but I want it to open maximized, how can I do that? Thanks in Advance. J . J Click to expand... Open your form in design mode go into properties, in the on open event build event with DoCmd.Maximize then End Sub.
H Hugh O'Neill Oct 6, 2003 #4 Joel said: I built a form but I want it to open maximized, how can I do that? Thanks in Advance. J Click to expand... In the vba coding behind the Form's Open, Load or Activate event, put: DoCmd.Maximize Choose whichever of these events is most suitable for you. hth Hugh
Joel said: I built a form but I want it to open maximized, how can I do that? Thanks in Advance. J Click to expand... In the vba coding behind the Form's Open, Load or Activate event, put: DoCmd.Maximize Choose whichever of these events is most suitable for you. hth Hugh