Forms squashed in dialog view

R

RL

I have a form which is opened by a macro in dialog mode. The underlying table
contains several records. All the other forms which I have setup in the same
way open to a certain height, regardless of the number of records. If all
records don't fit, there is a vertical scroll bar.

This one form however, usually (but not always) displays just one of the
records so that I have to scroll down to see the rest of the list
individually.

I have tweaked all the relevant properties to their logical settings (see
below), to try to make this form behave in the same way as the others, but
have not suceeded.


Any ideas what I am doing wrong?

Default view: Continuous form
Auto Centre: Yes
Auto resize: Yes
Fit to screen: Yes
Border style: Dialog
Scroll bars: Vertical only
 
J

Jeanette Cunningham

Hi RL,
you can put code in the form's open or load event to size and move it as you
like.

Use DoCmd.MoveSize
Check out vba help on MoveSize - it is easy to do.
You will need to convert from cm or inches to twips.
In Australia ( form measurements in centimetres) I do it like this:
DoCmd.MoveSize 5.6 * 567, 9.85 * 567

the *567 converts measurements in cm to twips.


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 

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

Vertical Scroll Bar not going away 3
Form Height 1
Popup form resizes itself 1
auto sizing data grid view 6
scroll bars in forms 7
Scroll bar in form is missing 1
Form Height 4
vertical scrollbar in subform 2

Top