Open Database Window

  • Thread starter Thread starter Lamar
  • Start date Start date
L

Lamar

Is there a way to use a command button to open the
Database Window? I want have a cmd button a form that
when user clicks it the database window appears.

Thanks for any help.
 
Lamar said:
Is there a way to use a command button to open the
Database Window? I want have a cmd button a form that
when user clicks it the database window appears.


Use this line of code:

DoCmd.SelectObject acTable, , True
 
Back
Top