Hi,
I tried the following:

rowsInTable = TblGetNumberOfRows (table);
for (row = 0; row < rowsInTable; row++)
{
 for (col = 0; col < 7; col++)
 {
  TblSetItemStyle (table, row, col, textTableItem);
  TblSetColumnUsable (table, col, true);
 }
 TblSetRowHeight(table, row, 16);
 TblSetRowUsable (table, row, true);
}
str = "a";
TblSetItemPtr(table, 2, 2, (char *)str);

Running this on the emulator resulted in an empty table.
However, when touching the table items, it is possible to enter text from the keyboard.


My goal is to be able to fill this table with my text strings.
What might the problem?

Regards,
-Udi




--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to