Hi I want this sliderbar to have ticks which display the number/value of that position: _____________ <-- slider | | | | | | | 1 2 3 4 5 6 7 something like that, yet i found nothing in the helpfile current code: #include <GUIConstants.au3> Global $amount GUICreate ( "Conjure Water v1.2b", 300, 150) $slider = GUICtrlCreateSlider (50,30,200,20,$TBS_AUTOTICKS) GuiCtrlSetLimit ($slider, 20, 10) $button = GUICtrlCreateButton ( "OK",110,100,80,20) GuiSetState