06-11-2010 04:41 AM
Solved! Go to Solution.
06-11-2010 05:24 AM
06-22-2010 12:15 PM
I have a follow up question.
the prototype is
int CallCtrlCallback (int Panel, int Ctrl, int Event, int EventData1, int EventData2, int *Return_Value);
For an event = EVENT_COMMIT what are the meaning of values EventData1 and EventData2? Or do I just set them to NULL?
06-22-2010 03:25 PM
I have never checked what the values are when I get an EVENT_COMMIT event but I have used this function and simply set both of those to zero.
Works fine, I do know that for mouse clicks (not commits!) those are populated with the mouse pointer coordinates.
06-22-2010 03:52 PM
Meaning of eventData parameters is listed in userint.h where events are defined. Several events have associated eventData values (some of them only when fired for specific control types).