Switchboard restore down coding Office 2007

  • Thread starter Thread starter Thorson
  • Start date Start date
T

Thorson

I created a switchboard using the Access 2003 Switchboard Wizard (I am now
using Access 2007). Currently when a user opens a form or report and
maximizes it and then closes the form or report the switchboard also remains
maximized. Is there a code that I can put into the switchboards VBA to have
it restore down, or return to the non-maximized size after the form or report
is closed?
 
In the close event of the form or report put:

docmd.restore

that will restore the switchboard back to it's original state.
 
Back
Top