Database Window Button

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
 
G

GJT

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
**********************************************
 
G

GJT

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
******************************************
 
G

GJT

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
******************************************
 

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

Top