textbox auto return
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
how to let text box auto return when I reach right side edge of it? in another word, there's a limitation of characters in line.
-
how to let text box auto return when I reach right side edge of it? in another word, there's a limitation of characters in line.
>code>LimitText will let you set a max number of characters. As for auto-returning, you might want to handle the
EN_UPDATE
notification message for the edit.