Hide Database Window

  • Thread starter Thread starter JonWayne
  • Start date Start date
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
 
Back
Top