Hide Database Window

A

Allen Browne

JonWayne said:
How do I hide the database window in code?

Make sure the database window has focus:
DoCmd.SelectObject acForm,,True
and then hide it:
RunCommand acCmdWindowHide
 
Top