Unhide database window

P

Pietro

Hi,
I hide database window window in the start up of the application,in
Office 2003 i use the below code to unhide it:
DoCmd.RunCommand acCmdWindowUnhide

I try to use the same code with Office 2007 but it does not work,can anybody
help?
 
K

Krzysztof Pozorek [MVP]

(...)
I hide database window window in the start up of the application,in
Office 2003 i use the below code to unhide it:
DoCmd.RunCommand acCmdWindowUnhide

I try to use the same code with Office 2007 but it does not work,can
anybody
help?

Try this instead:
DoCmd.SelectObject acTable,"",True

K.P. MVP, Poland
www.access.vis.pl
 

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