10-28-2010 05:20 PM
I am trying to SetTableCellAttribute and SetTableCellVal when table is in a CTRL_TABS defined Tab.
Without being in a Tab would call
SetTableCellVal (panel_handle, PANEL_TABLE, MakePoint (1,16), ave);
But in a Tab? Not sure how to use function call with Tabs?
10-28-2010 11:43 PM
Controls on a tab behave normally... provided you undestand that each tab page is a separate panel with its proper handle!
Tab control provides the command GetPanelHandleFromTabPage for you to retrieve the panel handle associated with a tab page, and is that one that you must call to address all controls on it.
11-01-2010 03:42 AM
In case it is not clear enough, what Roberto means is that; after you get a tab_handle using GetPanelHandleFromTabPage,
you should call the function as: SetTableCellVal (tab_handle, PANEL_TABLE, MakePoint (1,16), ave);