18 August 2012

Passing Data Between tab controls in C#.net

Tab control 1 contains textBox1 and next Button
Tab control 2 contains textBox2.
Click Next Button Event
textBox2.Text = textBox1.Text;
tabControl1.SelectedIndex = 1;

No comments: