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?
Randy - 29 Nov 2004 18:14 GMT
> Does anyone know how to minimize a form automatically when you open
> another
[quoted text clipped - 6 lines]
> 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