11-07-2005 09:50 AM
11-07-2005 01:54 PM
11-08-2005 10:24 AM
11-08-2005 11:19 AM
GetActiveTableCell returns the address of the active cell in a Point structure. See the help on this function for more details. To delete one row, basically you need only two functions:
GetActiveTableCell (panel, control, &cell);
DeleteTableRows (panel, control, cell.y, 1);
To delete multiple highlighted rows, you can use these functions:
GetTableSelection (panel, control, &area);
DeleteTableRows (panel, control, area.top, area.height);
11-08-2005 11:36 AM