I have a multi-line edit box. Currently I type something like the following;

m_edit1 = "text, text, text";
UpdateData(FALSE);

and text appears in the edit box. I want to type alot of text though and when
I do that, it all appears on the first line only. How can I declare a new line in the
edit box?

When I type

m_edit1 = "text, text, text \n
newtext";

I get errors!

Any response anyone can give me will be greatly appreciated.