help! Shrinking ! (my forms, that is)

B

barret bonden

Can't seem to stop my forms from opening in a shrunken condition. (v 2002)

I've tried things like:

Private Sub Form_Open(Cancel As Integer)
Me.Detail.Height = 7200
Me.FormHeader.Height = 820
Me.FormFooter.Height = 200

but they (often, sometimes - which is even more confusing) open very short.
 
T

tina

try adding the following code to the form's Load event procedure, as

DoCmd.Restore

hth
 
T

Tom van Stiphout

On Sun, 4 Jan 2009 13:50:12 -0500, "barret bonden"

Set the Auto Resize property at the Form level to Yes.

-Tom.
Microsoft Access MVP
 
Top