can you maximize a form with code?

  • Thread starter Thread starter andy
  • Start date Start date
A

andy

how can I maximize a form, report, or query window using
VBA instead of clicking the maximize button? I want the
forms to always open in full size mode.
 
Hello Andy,

In the Open Event of your form or report, just insert the following line:

DoCmd.Maximize
 
Thank you Cheryl
-----Original Message-----
Hello Andy,

In the Open Event of your form or report, just insert the following line:

DoCmd.Maximize

--
Cheryl Fischer
Law/Sys Associates
Houston, TX




.
 
Back
Top