BackSpace button
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
What is a Backspace button? Explain what you want to achieve Clearly
Vuyiswa Maseko, Sorrow is Better than Laughter, it may Sadden your Face, but It sharpens your Understanding VB.NET/SQL7/2000/2005 http://vuyiswamb.007ihost.com http://Ecadre.007ihost.com vuyiswam@tshwane.gov.za
-
What is a Backspace button? Explain what you want to achieve Clearly
Vuyiswa Maseko, Sorrow is Better than Laughter, it may Sadden your Face, but It sharpens your Understanding VB.NET/SQL7/2000/2005 http://vuyiswamb.007ihost.com http://Ecadre.007ihost.com vuyiswam@tshwane.gov.za
the function of backspace button in key board
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
Use the key events on the form to check for a backspace key. When you detect the backspace key press then you need to implement the functionality you want.
Never underestimate the power of human stupidity RAH
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
Hi, I hav a textbox anda button on my screen when i press button on the screen it shud delete the text in the textbox ex: as Backspace on the key board works
-
Hi, I hav a textbox anda button on my screen when i press button on the screen it shud delete the text in the textbox ex: as Backspace on the key board works
You can write your custom Backspace function in Button_Click event, something like this:
Button_Click()
{
//[Edit]
if (TextBox != "")
//[/Edit]
TextBox.Remove(LastCharacter);
}// This is not an executable code, it just gives you the main ideaRegards
While (true) { Human.isLearnable = true; }
-
Hi, I hav a textbox anda button on my screen when i press button on the screen it shud delete the text in the textbox ex: as Backspace on the key board works
Ok so your first shot at explaining your problem was not very good. This one is much better, and Pedram has supplied an answer, well done for persisting.
Never underestimate the power of human stupidity RAH
-
Ok so your first shot at explaining your problem was not very good. This one is much better, and Pedram has supplied an answer, well done for persisting.
Never underestimate the power of human stupidity RAH
I'm tired of balancing the votes on your post. You have a fan I guess. :)
Cheers, Rajesh R Subramanian.
It is a crappy thing, but it's life -^ Carlo Pallini
-
I'm tired of balancing the votes on your post. You have a fan I guess. :)
Cheers, Rajesh R Subramanian.
It is a crappy thing, but it's life -^ Carlo Pallini
Rajesh, I appreciate the effort but you need not bother, I am happy to ignore the voting thingy. I like to see the odd 5 when I manage to get in a particularly witty response and I enjoy them when I can help someone but a univoter can be ignored. Besides I am not a polite person so I expect to irritate someone sometime and a univote is often the only response they have. Thank you...
Never underestimate the power of human stupidity RAH
-
Hi , I wud like to implement the backspace button functionality to my button in the form. Plz help me by giving code
try to use the ASCII code for backspace instead of using the enum Key