atesh Posted August 8, 2003 Posted August 8, 2003 how do i tell a textbox to press the backspace key. something like.. textbox1.text &= Chr(0) Quote To err is human, to really foul things up requires a computer.
Leaders dynamic_sysop Posted August 8, 2003 Leaders Posted August 8, 2003 you could always do this : TextBox1.Focus() SendKeys.Send("{BACKSPACE}") Quote
*Experts* Bucky Posted August 8, 2003 *Experts* Posted August 8, 2003 Just use Substring to set the text to one less character: TextBox1.Text = TextBox1.Text.Substring(0, TextBox1.Text.Length - 1) Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.