Form Resizes itself

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

Guest

Hi

On my form i have a command button that opens another form based upon the
client selected. Which work fines.

My problem occurs when i close form (command button to close) the first form
has resized it self to a small window.

How can i stop this from happening? I have tried putting an event procedure
to maximise the form when it loads but that doesnt work. I have tried using
Current as well which works when you select another client but thats not what
i want.

Can some one explain whats happened

Cheers
 
in the first form, try adding

DoCmd.Maximize

to the form's Load event. if it still gets resized when the other form
opens, try adding the code to the first form's Activate event.

hth
 
Back
Top