
Newbie Needs Help on Textbox
Magic,
Try what Chris and Jan said in the other thread, that's an easy one to
miss, curse of copy and paste. :)
Either way, assigning "" to it, in an InitText function should do the
trick.
Ie: Just before you start your edit session, call a function.:
Sub InitEdit()
txtThis.Text = ""
txtThat.Text = ""
End Sub.
I do something similar in any data entry page i have.
Quote:
>Thanks for your help Frank,
>These TextBoxes are for APPEND. They are blank to start with.
>The TextBox are not bound. Maxlength = 15.
>I can only type 14 characters before the bell rings
>and can not type anymore. If I press the Delete Key,
>THEN I can type the full 15 characters.
Regards, Frank