I have the following problem:
I don't want a buddy control to it, but just an event on change. Win32 help says that %WM_HSCROLL is generated. Thats true, but CbCtl doesn't return the controls %ID_UPDOWN, so I don't know which control caused the event. (%WM_HSCROLL is generated twice on control change).
Also I'd like to set the step size of the control (I want it to increment 30 on one step). Is that possible, or should I multiply it myself?
Peter
Code:
%ID_UPDOWN = 800 Control Add "msctls_updown32",hDlg,%ID_UPDOWN,35,20,20,13,%WS_CHILD Or %WS_BORDER Or %WS_VISIBLE Or %UDS_WRAP Or %UDS_ARROWKEYS Or %UDS_HORZ
Also I'd like to set the step size of the control (I want it to increment 30 on one step). Is that possible, or should I multiply it myself?
Peter
Comment