my code is as follow
private void textBox1_Validating(object sender, CancelEventArgs e)
{
MessageBox.Show("text box validating event");
MessageBox.Show(textBox1.Text);
}
I am entering some value in text box and press tab key , the cursor navigates to the next text box, but there is no response
to the event. my purpose is to display some value in text box 2 based on the value of text box 1.
plz suggest how to achieve this.
thanks and regards
madhu
private void textBox1_Validating(object sender, CancelEventArgs e)
{
MessageBox.Show("text box validating event");
MessageBox.Show(textBox1.Text);
}
I am entering some value in text box and press tab key , the cursor navigates to the next text box, but there is no response
to the event. my purpose is to display some value in text box 2 based on the value of text box 1.
plz suggest how to achieve this.
thanks and regards
madhu