question
how to move a data of first textbox to another.
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.
Farhan ShariffPosted Jul 30, 2014, 8:26 AM
{
textBox2.Text = textBox1.Text;
}
private void textBox2_Enter(object sender, EventArgs e)
{
textBox2.Text = textBox1.Text;
}