Hi,
How can I calculate the slider control's jump magnitude.
suppose my setting m_sliderCtrl.SetRange(0, 100, TRUE);
Can I set each jump to 5?
Hi,
How can I calculate the slider control's jump magnitude.
suppose my setting m_sliderCtrl.SetRange(0, 100, TRUE);
Can I set each jump to 5?
Try something like this:
m_sliderCtrl.SetLineSize(5);
m_sliderCtrl.SetPageSize(20);
6 people are following this question.