Open up database wiidow

  • Thread starter Thread starter poppy
  • Start date Start date
P

poppy

I have a button and would like to, in the on-click event
open up the database window (the window showing tables.
queries e.t.c).

Can anyone help ?
 
Hi,

Try code like:

DoCmd.SelectObject acTable, "tblSomeTable", True

By supplying the last argument as True the table will be selected in the
datbase window. You can also select Queries, Forms, Reports, Macros and
Modules if required.

Hope this helps.


--

Cheers
Mark

Free Access/Office Add-Ins at:
http://mphillipson.users.btopenworld.com/
 

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