Date: 02-16-2022
Return to Index
created by gbSnippets
'An Edit Control has a default limit of 32K characters. This is the limit a user
'can type in, but is NOT the limit that a WM_SetText message can send to the
'edit control.
'The limit on user entry can be raised up to 64K by sending a
'EM_SetLimitText message to the control.
SendMessage(hEdit, %EM_SetLimitText, 0,0) 'set new limit
'gbs_00121
'Date: 03-10-2012
http://www.garybeene.com/sw/gbsnippets.htm