Database Window Button

  • Thread starter Thread starter Jason Wills
  • Start date Start date
J

Jason Wills

Is there anyway in wihcih i can use a command button on a form to open up
the 'Database Window'? I wish to take it away from the menu bar across the
top....

Thanx in advance

Jason
 
Jason

For the On Click event of the command button add the following:

'To Unhide the Database Window
DoCmd.SelectObject acTable, , True

This will unhide the database window with the Table Objects visible.

HTH

**********************************************
Graham
http://www.microsoft-accesssolutions.co.uk
**********************************************
 
Jason

For the On Click event of the command button add:

'To Unhide the Database Window
DoCmd.SelectObject acTable, , True

This will open up the database window with the table objects visible

HTH

******************************************
Graham
http://www.microsoft-accesssolutions.co.uk
******************************************
 
Jason

For the On Click event of the command button add:

'To Unhide the Database Window
DoCmd.SelectObject acTable, , True

This will open up the database window with the table objects visible

HTH

******************************************
Graham
http://www.microsoft-accesssolutions.co.uk
******************************************
 
Back
Top