I am using the following code to clear the textbox TXTFIRSTNAME, but it does not clear as I think that it should.
FF_TextBox_Clear (HWND_FRMADDRESSBOOKIII_TXTFIRSTNAME)
What I am trying to do is to clear the textbox after I have written the record.
Thank you,
Buck
Use this instead:
FF_TextBox_SetText (HWND_FRMADDRESSBOOKIII_TXTFIRSTNAME, "")
FF_TextBox_Clear clears only the current selection in a TextBox.
Rolf
Rolf,
That works... and thank you for your time.
Buck
No problem. Without the help I got from this forum I often would have been lost.