Add a scrollbar on a User Form using word 2000

C

constance

Hi everybody, i want to add a vertical scrollbar on my user form but my
problem is that i see the scrollbar on my form when i execute my macro
but i can't move in my form and see all the fields
i set the scrollbars property to frmScrollbarsVertical but it doesn't
semm to work
somebody can help me please
Thanx a lot
Lyne
 
J

Jonathan West

Hi Constance,

If I understand correctly what you need, you are looking for the entire
userform to scroll so that you display more controls that will fit on the
visible area.

To do this, you don't add a scrollbar control to the form. Instead, set the
ScrollBars property of the UserForm to fmScrollBarsVertical, and then set
the ScrollHeight property to an appropriate value larger than the Height
property of the UserForm.
 
Top