is there possible to make Edit Control Detect \n as end of line ?
Printable View
is there possible to make Edit Control Detect \n as end of line ?
Do you mean passing a string with "\n" to edit text. Edit text can only accept the "\r\n" combination as end of line marker. Maybe what you can do is to insert "\r" every time you find "\n" before passing it to the edit control.
Hope it will help you