Hi,
How to clear textbox character by character by clicking on button in wimdows application using C#.net
Hi,
How to clear textbox character by character by clicking on button in wimdows application using C#.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kirtan PatelPosted May 13, 2009, 5:07 AM
{
int len = textBox1.Text.Length;
textBox1.Text = textBox1.Text.Substring(0,len-1);
}