Display Query Results on top of a Form

  • Thread starter Thread starter Kristin M
  • Start date Start date
K

Kristin M

I have a query which runs from a control button on a form. When the query
runs, the results are displayed behind the form. The user then has to
minimize the form in order to see the query results.

How do you set the query results to display on top of the form?
 
You could put the following line in the code for the On Click event of the
button being pushed:

DoCmd.Minimize

That will minimize the form and the query should be on top.
 
Back
Top