Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Show database window button

Status
Not open for further replies.

markk85

Technical User
Nov 22, 2005
40
GB
I have hidden database window on startup of my databse.

I now want a button on a form that I can press to show the database window.

Doe anyone know what VBA code I need to write for that button to show the database window?

Thanks
 
The easiest thing to do is to select a known object, the True makes the DBWindow unhide.

[tt]DoCmd.SelectObject acTable, "tbltable", True[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top