
Enable and Disable all or part of a scrollbar
The new FlatScrollbar controls expose the ability to selectively disable their arrows. This is useful, for example, when the thumb indicator is at its minimum or maximum: Private Sub FlatScrollBar1_Change() If FlatScrollBar1.Value = FlatScrollBar1.Min Then FlatScrollBar1.Arrows = cc2RightDown ElseIf FlatScrollBar1.Value = FlatScrollBar1.Max Then FlatScrollBar1.Arrows = cc2LeftUp Else FlatScrollBar1.Arrows = cc2Both