Character insertion into a Editbox!
-
Hello! I'm trying, by code, to insert the '\n' or 0x0D or chr(13) into a EditBox to format the data comingo from a Database. Anyone have a clue on how to do this? Thank you for your time!
-
Hello! I'm trying, by code, to insert the '\n' or 0x0D or chr(13) into a EditBox to format the data comingo from a Database. Anyone have a clue on how to do this? Thank you for your time!
-
Hello! I'm trying, by code, to insert the '\n' or 0x0D or chr(13) into a EditBox to format the data comingo from a Database. Anyone have a clue on how to do this? Thank you for your time!
there are a few ways. the easiest is to add the "\r\n" to the data then do a SetWindowText to add all the data at once. (you need the '\r', or the edit box will draw a little square for the '\n'). CString inData; inData = from database inData+="\r\n"; myEdit.SetWindowText(inData); -c
Cheap oil. It's worth it!
Image Processing - just like mom used to make.
-
Hello! I'm trying, by code, to insert the '\n' or 0x0D or chr(13) into a EditBox to format the data comingo from a Database. Anyone have a clue on how to do this? Thank you for your time!
-
Chris was rigth, i must insert "\r\n", to make the line feed. Thank you all!