hello thanks to all for the responds
I try all that said wizard_hu , nothin works! but the problem was in another code, which had not put! sorry for that! wizard_hu was right when say "blur may come from an other thing" . the problem was in this code
Code:
iRichText1->SetSelectionL(aCursorPos, aLastPos);
iRichText1->ApplyCharFormatL(charFormat, charFormatMask);
an the solution is =
Code:
iRichText1->RichText()->ApplyCharFormatL(charFormat, charFormatMask,aCursorPos, text.Length());
now load of text is much faster!! and don't has blur effect !! =)
i hope this can help someone else too