Userform and scroll bars

  • Thread starter Thread starter KimberlyC
  • Start date Start date
K

KimberlyC

Hi

I have a user form that I have added the vertical scroll bar to by using the
properties.
However , the scroll bar does not work..

Is there something else I need to do??

Thanks in advance!
Kimberly
 
Is any of the userform not visible? If not, then there would be nothing to
scroll to.
 
Hi KimberlyC;
For example:

Private Sub UserForm_Initialize()
' Vertical ScrollBar
Me.ScrollHeight = Me.InsideHeight * 3
' Horizontal ScrollBar
'Me.ScrollWidth = Me.InsideWidth * 3
End Sub

MP
 
Hi
I figured it out.. I changed the scroll height to match the form height and
that seemed to work...
 

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

Back
Top