Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to minimize a form automatically when you open another
form? I have a Master Switchboard and have a couple of windows I'd like to
minimize when I click on a command button a a form. Once I've finished with
that form and have saved the record on it I exit and then the form I
originally came from where the command button was on would open up again when
I exit the form I was just in. Any clues?
 
Samurai said:
Does anyone know how to minimize a form automatically when you open
another
form? I have a Master Switchboard and have a couple of windows I'd like
to
minimize when I click on a command button a a form. Once I've finished
with
that form and have saved the record on it I exit and then the form I
originally came from where the command button was on would open up again
when
I exit the form I was just in. Any clues?

Samurai, try to create a public function within the form you want to
minimize. Use the "DoCmd.Minimize" instruction on that function. Then call
that function from outside the form ( Call
Forms("FormToMinimized").PublicFunctionName( ) ) to have it minimized.

-Randy
 
Back
Top