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
 
Top