How to identify that the user is typing ?

Raj.Trivedi
Posted by Raj.Trivedi under C# category on | Points: 40 | Views : 1513
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
label1.Text = "Typing.........";
}

Comments or Responses

Login to post response