Mon Jan 18, 2010 5:11 am
namespace Passing_Data
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 frm = new Form2(textBox1.Text);
frm.Show();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
FORM 2:
namespace Passing_Data
{
public partial class Form2 : Form
{
public Form2(String strTextBox)
{
InitializeComponent();
label1.Text = strTextBox;
}
private void Form2_Load(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.