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/
 
Back
Top