I'm trying to create a text editor in vc++, without using mfc's edit class. I've managed to capture the key pressed using WM_CHAR message, but now how can i add it into a string(or any character handling data type) so that i can display it in my client area using TextOut() or functons similar to it???
|
|
|||||
|
|
|
if it's a plain char array then you can use
where ch is the character. Watch our for running out of space in your_str |
||||||
|
