Unhide database window

  • Thread starter Thread starter Pietro
  • Start date Start date
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?
 
(...)
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
 
Back
Top