empty CEikGlobalTextEditor

Login to reply to this topic.
Thu, 2007-02-01 07:49
Joined: 2004-09-15
Forum posts: 25
hi there,

how to empty the content of CEikGlobalTextEditor?

i have use this way:
Code:
TBuf<20> temp;
temp.Zero();
temp.Copy(_L(""));
iInputName->SetTextL(&temp);

or
Code:
HBufC* a;
a = HBufC::NewLC(5);
a->Des().Copy(_L(""));
iInputName->SetTextL(a);
CleanupStack::PopAndDestroy(a);

both didnt work.
plz help.

Thanks,
Rx-lee
  • Login to reply to this topic.