I have a virtual on screen keyboard, and one of the buttons is a backspace.
What command would I use to delete the last letter of the textbox?
Printable View
I have a virtual on screen keyboard, and one of the buttons is a backspace.
What command would I use to delete the last letter of the textbox?
Try this..
(Assuming " " as a posible character)VB Code:
Text1.Text = Left$(Text1.Text, Len(Text1.Text) - 1)
Or, for only visible characters..
VB Code:
Text1.Text = Left$(Text1.Text, Len(Trim$(Text1.Text)) - 1)
Thanks. It worked perfectly