hi,
i am developing one application. In this app, i have created dialog which contains the rich text editor. All are created in the below resource file.
RESOURCE DIALOG r_testapp_dialog
{
title = qtn_appl_dialog_scannersdk;
flags = EAknDialogGenericFullScreen;
buttons = R_AVKON_SOFTKEYS_OPTIONS_BACK;
items =
{
DLG_LINE
{
type = EEikCtRichTextEditor;
id = ETestAppResultText;
control = RTXTED
{
width = 160;
height = 100;
numlines = 20;
textlimit = 50;
flags = EEikEdwinResizable;
};
}
};
}
In the source file, created the CAknDialog object and constructed using that dialog resource.
CAknDialog= new(ELeave) CAknDialog();
dialog->ConstructL(R_TESTAPP_DLG_MENUBAR);
dialog->ExecuteLD(R_TESTAPP_DIALOG);
Now i want set some text to that rich text before dialog execute.
how can get that rich text object?
is there any other dialog to use this rich text editor?
how can i set the text length to unlimited?
please anybody give me the solution.




