
How to set text into CEdit (Multiline)
You can use SetWindowText(...) to place data into your control.
A couple points of interest:
* Convert your text file line-feeds ("\n") to carriage-return line-feed
pairs ("\r\n").
* Take a look a CEdit::SetSel() for controlling concatenation and text
selection
TFM3
Note: Spam-resistant e-mail address
Quote:
> How can I set text, which I read from file, into a multiline CEdit?