Hi,
I have two text boxes; Textbox1, Textbox2. If user enters a number into textbox1, the calculated result will be displayed in textbox2. If user enters a number into textbox2, the calculated result will be displayed in textbox1. I used textbox _TextChanged event handler. It is working fine if user clicks the mouse outside the text box. I don't want that.
I have also another tow buttons (Next and Calculate) in this page.
What the other way I can solve the problem, any help will be appreciated.
Thanks
Paritosh
Jan MontanoPosted Jan 27, 2009, 4:04 AM
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
MessageBox.Show(textBox1.Text);
}