Form window

D

Dino

How does one make sure that a query result table opens at maximum window
size, or at least at the size that maximizes the contents? One of my tables
insists on opening at a minimum size. I use a form to display the query
results.
 
F

fredg

How does one make sure that a query result table opens at maximum window
size, or at least at the size that maximizes the contents? One of my tables
insists on opening at a minimum size. I use a form to display the query
results.

Code the Open event of the form:
DoCmd.Maximize
 
Top