Switchboard Question

  • Thread starter Thread starter Chaplain Doug
  • Start date Start date
C

Chaplain Doug

How may I make my switchboard minimize or disappear when I
open another menu or form (a switchboard item)? Some of
my forms are smaller than the switchboard and the edges of
the switchboard stick out from behind the form when
opened. I want just the current active form to be
displayed on the screen.Thanks for the help.
 
Hi

the way i do it is to add the following to the OnOpen event of the form -
Forms!Switchboard.Visible = False

and in the OnClose event of the form -
Forms!Switchboard.Visible = True

hope this helps
JulieD
 
Back
Top