if you load the text with sth like: TblSetLoadDataProcedure (table, 1, (TableLoadDataFuncPtr) ListFormGetRecordField);
... you can set the attributes of the textfield in the 'ListFormGetRecordField-Function' as seen below. This will make the textfield not editable.. and you can also hide the lines of the textfield if (fld) FldGetAttributes (fld, &attr); attr.editable = false; attr.underlined = noUnderline; FldSetAttributes (fld, &attr); } Hope that helps Dyk "V...i...K...a...S" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:81642@palm-dev-forum... > > Well hi Guys, > When we use a table and set the style of the > table item to -> labelTableItem then it displays the data with a ':' > complimentary character > with it.But I don wanna show that.If I use the table item > type->textTableItem then it > serves the purpose but again it is editable(I want non-editable). > There is a table item type as -> customTableItem but then I have to haandle > all the drawing to the table cell which is complicated. > > Has anyone had sucha problem .If yes I waould appreciate if u can > guide me how to go abt. it. > > > Thx In Advance.... > > > Vikas > > > > -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
