Vertical scroll bar in a MultiPage

G

Guest

Hi,

I'm trying to make a vertical scroll bar in a multipage work. The height of
the scroll bar is 373, of the multipage is 390 and of the form is 474.

Someone else posted that the property height of the scroll bar should be
greater than the form's. I tried it but it didn't work.

Any ideas?

TIA.
 
M

Michel Pierron

Hi anonymous,
An example:

Private Sub UserForm_Initialize()
MultiPage1.Value = 0
MultiPage1(0).ScrollBars = 2
MultiPage1(0).ScrollHeight = MultiPage1.Height * 2
End Sub

MP
 

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