/ Published in: C++
URL: http://www.codeguru.com/forum/showthread.php?t=318921
Append text to CEdit control and scroll to the end.
Expand |
Embed | Plain Text
int nLength = edit.GetWindowTextLength(); // put the selection at the end of text edit.SetSel(nLength, nLength); // replace the selection edit.ReplaceSel(pszText);
You need to login to post a comment.
