CEdit help
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Is there a way i can manipulate a CString in order for me to insert a linebreak manually for an edit box. I am changing data inside the editbox via CString and need to be able to line break, and the regular \n doesn't work, it just shows an unusual character. Thanks
-
Is there a way i can manipulate a CString in order for me to insert a linebreak manually for an edit box. I am changing data inside the editbox via CString and need to be able to line break, and the regular \n doesn't work, it just shows an unusual character. Thanks
Try \r\n instead of \n on its own. Cheers.