From: Kristin M on
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?
From: Jerry Whittle on
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.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.


"Kristin M" wrote:

> 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?