I must append a TDesC string to a ListBox.
But in the emulator, the new item is seen as empty.no any character.
My format (\t%S\t\t) is appropriate for my ListBox.
What is the problem it is urgent..
thanks...
code/////////////////////////////////////
void CappContainer2::FreeText(const TDesC &aText, TDesC &name){
RDebug::Print(_L("FreeText(): %S --- tag : %S "😉, &aText, &name);
titleList = new (ELeave) CDesCArrayFlat(100);
titleList->AppendL((_L("\t%S\t\t"😉, name));
list->Model()->SetItemTextArray(titleList);
list->Model()->SetOwnershipType(ELbmOwnsItemArray);
list->HandleItemAdditionL();
}
Edit/Delete Message