From: Robert M. <rm...@po...> - 2007-02-10 22:38:03
|
Jim Salisbury wrote: > I could not figure out how to use richedit as it does not have an > Append() method as does textfield. For the RichEdit control, you can use: $richedit->SetSel(-1,-1); # Move insertion point to the end $richedit->ReplaceSel($new_text); # Insert at the insertion point That's pretty much what the Textfield does behind it's Append() method. Regards, Rob. |