Using Borland C++ v3.1's Resource workshop, I created a simple dialog box
with one multiline edit box in it.
When ever I set the text for this edit box, instead of the text moving to
the next line after a '\n' character is set, it puts a little box instead.
it only wraps to the next line when it has reached the maximum text it can
fit on one line.
How do I make it line feed each time it prints a '\n' ?
Here is the dialog box resource script in case I did something wrong
there:
RESULTSDLG DIALOG 6, 16, 222, 159
STYLE
WS_POPUP|WS_VISIBLE|WS_CAPTION|WS_SYSMENU|WS_THICKFRAME|WS_MINIMIZEBOX|WS_
MAXIMIZEBOX
CAPTION "Results of Search:"
FONT 8, "Arial"
BEGIN
CONTROL "", 40,"EDIT",
ES_LEFT|ES_MULTILINE|ES_READONLY|WS_CHILD|WS_VISIBLE|WS_BORDER|WS_VSCROLL|
WS_TABSTOP, 3, 2, 217, 155
END