Powered by |
How to add new line to multiline edit box?New line character "\n" is not enough here! Add two chars "\r\n". And do not forget to set Multiline property check box (or m_string += "Text line 1\r\n"; m_string += "Text line 2\r\n"; // ... m_Edit1.SetWindowText(m_String);
|