Please see the following lines of code
int nestnom;
InsertTableRows (panelHandle1, PANEL_2, -1, 1,VAL_USE_MASTER_CELL_TYPE);
GetNumTableRows (panelHandle1, PANEL_2, &numRows);
SetTableCellVal (panelHandle1, PANEL_2, MakePoint(nestcol, numRows), nestnom);
I get an error : found int ,expected pointer to char
I think when i use VAL_USE_MASTER_CELL_TYPE I should be able to use any data types.
Can anybody help me?