Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with a VScrollBar 1

Status
Not open for further replies.

PrograMan

Programmer
Jul 21, 2001
59
US
K, I'm writing a program that utilizes 3 vertical scroll bars and each of them has its own set of values, but are each supposed to change each other through certain algorithms. My problem is that I want each value to be changed as a scroll bar is moved, not just when I unclick on it. How do you do that?
 

Use the scroll event ...

[tt]
Private Sub VScroll1_Scroll()
Label1.Caption = VScroll1.Value
End Sub
[/tt]

Good Luck

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top