Jan 15, 2008 #1 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
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
Jan 15, 2008 #2 Remou Technical User Sep 30, 2002 13,030 BE The easiest thing to do is to select a known object, the True makes the DBWindow unhide. [tt]DoCmd.SelectObject acTable, "tbltable", True[/tt] Upvote 0 Downvote
The easiest thing to do is to select a known object, the True makes the DBWindow unhide. [tt]DoCmd.SelectObject acTable, "tbltable", True[/tt]
Jan 15, 2008 Thread starter #3 markk85 Technical User Nov 22, 2005 40 GB Thanks that works fine. Upvote 0 Downvote