Sizing a form

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

Hi,

I am wondering if anybody could help me make sure that a
form ALWAYS opens up to its 'Resore Down' size. It is a
small form and maximizing it just doesn't look right.

I cannot use the Pop-Up Property because I want a Report
to open on top of it.

Any help is greatly appreciated.

Jeremy
 
try adding an event procedure as follows

Private Sub Form_Open(Cancel As Integer)

DoCmd.Restore

End Sub

hth
 
Back
Top