1
Answer

question

how to move a data of first textbox to another.

Answers (1)

0
Photo of Farhan Shariff
NA 1.1k 111.4k 10y
private void textBox1_Leave(object sender, EventArgs e)
  {
  textBox2.Text = textBox1.Text;
  }
 
  private void textBox2_Enter(object sender, EventArgs e)
  {
  textBox2.Text = textBox1.Text;
  }