Pop-up Forms

  • Thread starter Thread starter Somecallmejosh
  • Start date Start date
S

Somecallmejosh

Hello,

On my main form, I have a control button which activates
a macro that opens another form. The dimension of the
form being opened are 3"H and 5"W. How do I have the
form open to those specific dimensions? I've set the
form's properties to indicate a pop-up status but it
still opens to the width of the entire screen. Any
suggestions would be greatly appreciated.

Sincerely,
Josh
 
Specify the WindowMode in your OpenForm:
DoCmd.OpenForm "Form2", WindowMode:=acDialog
 
Back
Top