If I have the following code:
and the properties are set to the default (Min is 0, max is 100, value is 0, Minjump is 1, maxjump is 10, etc etc), why is it that the label only shows the scroll bar's value to be 91 when the scroll bar is all the way to the right? Even if I click the > arrow button on the scroll bar, it stays at 91 as if 91 is it's max. Is there any reason for this, or a way to fix it?HTML Code:Private Sub hsb_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles hsb.Scroll lblhsbValue.Text = hsb.Value End Sub




Reply With Quote