Queri in front

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!
HAve this form with a command buttun
this button runs a queri but it come behind my form
is'n there a way so i can get it in the front?

Alvin
 
Hi!
HAve this form with a command buttun
this button runs a queri but it come behind my form
is'n there a way so i can get it in the front?

Alvin

Either ....
Code the form's command button:
DoCmd.OpenQuery "QueryName"
Me.Visible = False

Or....
Close the form when you open the query:
DoCmd.OpenQuery "QueryName"
DoCmd.Close acForm, Me.Name
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Open a queri 2
force focus on a query from a form 1
How to minimize a form - Access 2007 2
Access Form Refresh 1
report preview 5
USB C front panel connector to motherboard 2
Form Not Visible 2
Filesystem again 1

Back
Top