limitText
- Posted by Larry Miller <larrymiller at sasktel.net> Nov 12, 2004
- 492 views
There appears to be an error in Win32Lib's "limitText" procedure. The lParam and wParam parameters are reversed. In it's present form it will limit the text to no more than 64K of an RTF file. There is no apparent problem with TXT files. Original: VOID = sendMessage( id, lMsgType, pSize, NULL ) Corrected: VOID = sendMessage( id, lMsgType, NULL, pSize ) Larry Miller