I would like to insert text at the end of a multi-line Edit Control.
I could copy the existing text into a variable, add the new
text and then CALL SetWindowText (hW, @psz), but that's tacky.
Is there a simplier way?
I see I can find the end using
iCount = SendMessage(hwndEdit, %EM_GETLINECOUNT,0,0)
Is there a way to use this to insert?
------------------
I could copy the existing text into a variable, add the new
text and then CALL SetWindowText (hW, @psz), but that's tacky.
Is there a simplier way?
I see I can find the end using
iCount = SendMessage(hwndEdit, %EM_GETLINECOUNT,0,0)
Is there a way to use this to insert?
------------------
Comment