Hi,
I have created a text editor using CEikEdwin class.
i am getting the text editor on emulator screen but not able to write anything in that text editor.
I think we need to set some flags for that but i am not getting that.
My Code for text editor:
iEditor = new (ELeave)CEikEdwin;
iEditor->SetContainerWindowL( *this );
iEditor->ConstructL(CEikEdwin::ELineCursor,0,15,1);
iEditor->SetBackgroundColorL(KRgbBlack);
iEditor->SetCursorPosL(0,EFalse);
iEditor->SetTextLimit(15);
iEditor->SetFocus( ETrue,ENoDrawNow);
iEditor->ClearSelectionL();
Please help
thanks

Reply With Quote

