I am using simpe CEikEdwin ,
what do u mean by stand alone ? ,
its not a full screen edwin , simple edwin for search in a view and other for sending chat msg ,
This is the way i am initializing the edwin , i am not passing any flags in one view in other edwin i am passing EAknEditorFlagNoT9 , to stop dictionary initially .
Code:
CEikEdwin * iTextEdwin;
iTextEdwin = new(ELeave) CEikEdwin();
iTextEdwin->ConstructL(0, 80, 200, 1);
iTextEdwin->SetContainerWindowL(*this);
iTextEdwin->SetExtent(TPoint(10, 4), TSize(rect.Width()-40, iHeight-8));
iTextEdwin->SetFocus(ETrue);
CGlobalText* globalTextname=(CGlobalText*)iTextEdwin->Text();
globalTextname->ApplyCharFormatL(charFormat, charFormatMask,0,iTextEdwin->Text()->DocumentLength());
in fring application i have seen that while entering text the tabs does not disappear .
thanks for reply