Use of scroll bars
Use of scroll bars
Rate Use of scroll bars
(2(2 Vote))
'Name of the textbox is txtval
Private Sub HScroll1_Change()
txtval.Text = HScroll1.Value
HScroll2.Value = HScroll1.Value
VScroll1.Value = HScroll1.Value
VScroll2.Value = HScroll1.Value
End Sub
Private Sub HScroll2_Change()
txtval.Text = HScroll2.Value
HScroll1.Value = HScroll2.Value
VScroll1.Value = HScroll2.Value
VScroll2.Value = HScroll2.Value
End Sub
Private Sub VScroll1_Change()
txtval.Text = VScroll1.Value
HScroll2.Value = VScroll1.Value
VScroll2.Value = VScroll1.Value
HScroll1.Value = VScroll1.Value
End Sub
Private Sub VScroll2_Change()
txtval.Text = VScroll2.Value
HScroll2.Value = VScroll2.Value
VScroll1.Value = VScroll2.Value
HScroll1.Value = VScroll2.Value
End Sub
Use of scroll bars Comments
No comments yet — be the first to post one!
Post a Comment