Re: bug in the EditText Area
- Posted by "Wolf" <wolfritz at king.igs.net> Feb 10, 2004
- 484 views
Not a bug! Value of wParam. Specifies the new text limit, in bytes. If this parameter is 0, Windows sets the maximum text limit. The maximum text limit is 32,766 bytes for a single-line edit control, and 65,535 bytes for a multiline edit control. i.e: void=sendMessage( control, EM_SETLIMITTEXT, 0, 0 ) That, incidentally, is why the old NotePad always went to WordPad for larger files.