Spinbox Set long for range
-
Is there any way to set long type for sping box max and min value. Right now I am using the spinbox. when i set spin box 10000000 for max value and 1 for min value as i click up arrow, the value in edit bx come down and vice versa for down arrow. I have to find a way to set larger range for this spinbox any help is appreciated Shin
-
Is there any way to set long type for sping box max and min value. Right now I am using the spinbox. when i set spin box 10000000 for max value and 1 for min value as i click up arrow, the value in edit bx come down and vice versa for down arrow. I have to find a way to set larger range for this spinbox any help is appreciated Shin
you can use the function SetRange32 to increase the range of your spin control. kindly deselect "No thousands" check box in the spin control properties dialog. CSpinButtonCtrl *pCtrl = (CSpinButtonCtrl *)GetDlgItem(IDC_SPIN); pCtrl->SetRange32(lower limit,upper limit); never say die