05-16-2006 02:05 PM
05-17-2006 07:48 AM
Your code probably has the foloowing staemtns:
switch(event)
{
case EVENT_ACTIVE_CELL_CHANGE :
// do whatever
break;
} // end of switch statement
just add the statements below before the end of the switch:
case EVENT_VAL_CHANGED :
//enter your desired actions based on the change
break;
Any events that occur can be similary handled inside the callback.
Bring up the UIR and in the upper left corner tyou will see an icon with a hand with one finger extended (no--not *THAT* finger) onto a green dot. Click on this button and move your mouse and click the buttons over your table. In the upper wight hand corner of the UIR window, you will see the events listed as they occur.
05-18-2006 09:00 AM