E elli Mar 5, 2006 #1 Where do I make my query to open at full size? Now it opens about the 1/3 size of yhe screen... -elli-
Where do I make my query to open at full size? Now it opens about the 1/3 size of yhe screen... -elli-
M Marshall Barton Mar 5, 2006 #2 elli said: Where do I make my query to open at full size? Now it opens about the 1/3 size of yhe screen... Click to expand... 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.
elli said: Where do I make my query to open at full size? Now it opens about the 1/3 size of yhe screen... Click to expand... 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.