Resizing a Form in Form View

S

srausc01

Regardless of the size of the form in Design View, when I switch to Form View
it fills the screen. I've changed the properties of all the form objects to
"can shrink" but that doesn't seem to work. Any suggestions?
 
J

Jerry Whittle

Two ideas:

Use the MoveSize command to place the form exactly where you want it with
the proper size. Something like this on the On Open even.

DoCmd.MoveSize 1, 1, 14500, 9000

Another possibility is the Restore command. It will return a maximized or
minimized form to its previous size.

DoCmd.Restore
 
F

fossy

You may also wnat to try the setting of the application:

office button -> access option
under "application options":
Documant window option -> select "overlapping windows"
 

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

Top