what the heck, I dont understand this at all. I opened a blank project, added two scroll bars, each having a minimum value of 0 and a maximum value of a 100. when I run the program, and I scroll the scrollbars to the maximum value position, it appears that scrollbar.value never goes any higher than 91....
would someone try the same thing and see is this happens to you too? because this totally doesnt make any sense to meVB Code:
Private Sub HScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles HScrollBar1.Scroll Me.Text = HScrollBar1.Value.ToString End Sub Private Sub VScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles VScrollBar1.Scroll Me.Text = VScrollBar1.Value.ToString End Sub




Reply With Quote