View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Michel Pierron[_2_] Michel Pierron[_2_] is offline
external usenet poster
 
Posts: 63
Default Userform and scroll bars

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

"KimberlyC" a écrit dans le message de
...
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