I am using several updown controls in a dialog. When I try to retrieve the
current value of the control, it returns the previous value.
ex.
CASE %WM_NOTIFY
SELECT CASE CBCTL
CASE %IDC_SPIN1
CONTROL SEND CBHNDL,CBCTL,%UDM_GETPOS,0,0 TO value&
In this case, the "value&" variable is filled with the buddy control
text before pressing the updown control. How do I get the value it is change to?
Jeff
------------------
current value of the control, it returns the previous value.
ex.
CASE %WM_NOTIFY
SELECT CASE CBCTL
CASE %IDC_SPIN1
CONTROL SEND CBHNDL,CBCTL,%UDM_GETPOS,0,0 TO value&
In this case, the "value&" variable is filled with the buddy control
text before pressing the updown control. How do I get the value it is change to?
Jeff
------------------
Comment