J Jim B. Aug 27, 2003 #1 Despite studying the Access 2000 object model, I have been able to hide / unhide the Database Window via VB 6. Thanks, Jim
Despite studying the Access 2000 object model, I have been able to hide / unhide the Database Window via VB 6. Thanks, Jim
L Lucky Aug 27, 2003 #2 In your VB window, open Office Assistant and type in Startup Properties Example to view example. Add your own code for hiding/showing db window, etc. I hope this helps. Lucky
In your VB window, open Office Assistant and type in Startup Properties Example to view example. Add your own code for hiding/showing db window, etc. I hope this helps. Lucky
T Tim Ferguson Aug 27, 2003 #3 I have been able to hide / unhide the Database Window via VB 6. Click to expand... Try the DoCmd object. Tim F
I have been able to hide / unhide the Database Window via VB 6. Click to expand... Try the DoCmd object. Tim F
V Van T. Dinh Aug 28, 2003 #4 If you meant Access VBA 6.0 then: * To hide DoCmd.SelectObject acTable, , -1 Docmd.RunCommand acCmdWindowHide * To show DoCmd.SelectObject acTable, , -1 Change acTable to another Container if you prefer. (Note: tested in AXP - VBA 6.3, NOT A2K - VBA 6.0) HTH Van T. Dinh MVP (Access)
If you meant Access VBA 6.0 then: * To hide DoCmd.SelectObject acTable, , -1 Docmd.RunCommand acCmdWindowHide * To show DoCmd.SelectObject acTable, , -1 Change acTable to another Container if you prefer. (Note: tested in AXP - VBA 6.3, NOT A2K - VBA 6.0) HTH Van T. Dinh MVP (Access)