This is just a caution regarding the Edit_GetText routine in the
"COMMCTRL.INC" file distributed with PBDLL. This function returns
the text of an Edit control as a STRING but be aware that a null
character terminator is included. This has just given me problems
so might I suggest that the final assignment in the function would
be better as,
FUNCTION = RTRIM$(buffer, CHR$(0))
Keith
------------------
"COMMCTRL.INC" file distributed with PBDLL. This function returns
the text of an Edit control as a STRING but be aware that a null
character terminator is included. This has just given me problems
so might I suggest that the final assignment in the function would
be better as,
FUNCTION = RTRIM$(buffer, CHR$(0))
Keith
------------------
Comment