Running query from switchboard

  • Thread starter Thread starter jlv_rt
  • Start date Start date
J

jlv_rt

This may be simple for some of you, but it has me
stumped - how do I run a query from a switchboard?

Thanks!
 
This may be simple for some of you, but it has me
stumped - how do I run a query from a switchboard?

Thanks!

If you are using the built-in switchboard created by the Access
Switchboard Manager, you need to first create either a code Module or
a Macro that opens the query. Then you can use the switchboard manager
to call the code or the macro in the manager's edit switchboard
dialog.

If you are using your own unbound form as a switchboard, simply add a
command button and code it's click event:
DoCmd.OpenQuery "QueryName"
 

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

Back
Top