Open Query at 'full size'

  • Thread starter Thread starter elli
  • Start date Start date
E

elli

Where do I make my query to open at full size? Now it opens about the 1/3
size of yhe screen...

-elli-
 
elli said:
Where do I make my query to open at full size? Now it opens about the 1/3
size of yhe screen...


If you use code behind a command button on a form to open
the query, then you can add a line to maximize it:

DoCmd.OpenQuery "name of query"
DoCmd.Maximize

Since you should use a form (or report) to display the data
from a query, I am having trouble understanding why this is
a useful thing to do.
 
Back
Top