On Sunday 09 September 2012 15:25:55 Patrick Goupell wrote:
> The delphi memoedit had a "mymemoedit.lines.add ('some string')"
> function that would add / append lines to the memoedit.
>
> Does the msegui memoedit have such a function?
>
No, please don't misuse tmemoedit as grid. In tmemoedit the whole text is a 
single string, in a grid it is organized in rows with much better performance 
if there are many rows.
Use 
"
tmemoedit.value:= tmemoedit.value + lineend + 'the new row text';
"

> How would (can) new text be added to an existing memo edit?
>
tmemoedit.value:= tmemoedit.value + 'the new text';

Martin

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to