Window size - continuous forms

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

Guest

I have tried changing the window size of a continuous form.
If I open the form on it's own it works fine.
However the form is a pop up based on criteria when opening another form.
When it opens as a pop up it maximises the window to fit the screen.
Any suggestions greatly appreciated.
 
try adding the following code to the pop-up form's Load event procedure, as

DoCmd.Restore

hth
 
my only other suggestion is to keep the Restore code, and also change the
form's Modal property to Yes.

hth
 
Thanks for the help Tina.
Maybe I've entered the code incorrectly?

See below:
Private Sub Form_Load()

DoCmd.Restore
Exit Sub

End Sub
 
Tina,
D'oh: I went through some macro's and found a macro that opens this pop up
form. In the macro I had a maximise action.
It now works.
Sorry to waste your time but thanks for the help!
 
you're welcome :)
and btw, on the Load event code you posted, you don't need the Exit Sub
line, because the very next line is End Sub.

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top