I have hard that the textbox can only hold 32kb of data or something like that, also that whatever that number is (kb i think) i think it can be changed to hold 64 kb of data, if so how ??
Printable View
I have hard that the textbox can only hold 32kb of data or something like that, also that whatever that number is (kb i think) i think it can be changed to hold 64 kb of data, if so how ??
Use:
...with these declarations:Code:SendMessage Text1.hWnd, EM_LIMITTEXT, 0, 0
Code:Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Public Const EM_LIMITTEXT = &HC5