male trackbar point left (or down)

How can I make the arrow (thumb) of a trackbar point left as opposed to right (or down instead of up)


Answer this question

male trackbar point left (or down)

  • RMan54

    Me.TrackBar1.Orientation = Orientation.Horizontal

    Me.TrackBar1.TickStyle = TickStyle.TopLeft

    Me.TrackBar1.Orientation = Orientation.Vertical

    Me.TrackBar1.TickStyle = TickStyle.BottomRight



  • Nick Palmer

    Thank you, I missed the TickSyle property.

  • male trackbar point left (or down)