Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
Arijeet GhoshPosted Jul 6, 2009, 11:20 AM
In Form1.Desighner.cs public System.Windows.Forms.TextBox textbox1; In Fom2.cs public partial class Form2:Form { Form1 f1=new Form1(); public Form2() // Constructor { InitializeComponent(); f1.show(); } private void button_Click(object sender,EventArgs e) { String str; str=f1.textBox1.text; label1.text=str; } }