Click to See Complete Forum and Search --> : Multiline edit control..


susiriss
March 20th, 2004, 11:02 PM
Hai everyone!
Please tell me what is the easiest method to append new strings to a multiline edit control ,of course without changing the current contents....
Thanks,
susiriss

RussG1
March 21st, 2004, 10:44 AM
Retrieve the current text and store in string varible, and then append/concatenate the new text to the string, and then set the edit control's text using the string.

pengch
March 21st, 2004, 09:57 PM
You can use SetSel function to set selection to end, then use ReplaceSel function to append new strings to end.