Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to pass values between two Forms (c#). How can I do it?

I have two forms: Form1 and Form2.

Form1 contains one button. When I click on that button, Form2 should open and Form1 should be in inactive mode (i.e not selectable).

Form2 contains one text box and one submit button. When I type any message in Form2's text box and click the submit button, the Form2 should close and Form1 should highlight with the submitted value.

How can i do it? Can somebody help me to do this with a simple example.

Thanks in advance Nagu

share|improve this question
Did you got any example for this ? – Millar Dec 13 '12 at 23:59

7 Answers

There are several solutions to this but this is the pattern I tend to use.

//In Form1's button handler
using(Form2 form2 = new Form2()) 
{
  if(form2.ShowDialog() == DialogResult.OK) 
  {
    someControlOnForm1.Text = form2.TheValue;
  }
}

And...

//In Form2

//Create a public property to serve the value
public string TheValue 
{
  get { return someTextBoxOnForm2.Text; }
}
share|improve this answer
I thought this was bad code conduct. This is great then. I will also use this pattern – CasperT Oct 13 '09 at 12:34
Well, I don't think it's bad "conduct", however there are security implications to consider before using this pattern. (But, great simple example +1) – anon271334 Feb 18 '11 at 5:20
I tried the above code ,but never worked – Millar Dec 14 '12 at 0:00

I've worked on various winform projects and as the applications gets more complex (more dialogs and interactions between them) then i've started to use some eventing system to help me out, because management of opening and closing windows manually will be hard to maintain and develope further.

I've used CAB for my applications, it has an eventing system but it might be an overkill in your case :) You could write your own events for simpler applications

share|improve this answer
+1 for events, they scale nicely. But where do you actually store the values? A static class is simple enough, but that's close to using a global variable, it feels... icky. Does each form have its own local variable for settings which relate to it? – Jon of All Trades Jan 29 at 21:31
private void button1_Click(object sender, EventArgs e)
{
        Form2 frm2 = new Form2(textBox1.Text);
        frm2.Show();    
}

 public Form2(string qs)
    {
        InitializeComponent();
        textBox1.Text = qs;

    }
share|improve this answer
1  
i have tested this code, if we don't call the default constructor of Form2, public Form2(string qs):this(){} the form will not be shown well. – rene Mar 26 '12 at 9:47

declare string in form1 public string TextBoxString;

in form1 click event add

private void button1_Click(object sender, EventArgs e)
    {
        Form1 newform = new Form1();
        newform = this;
        this.Hide();
        MySecform = new Form2(ref newform);
        MySecform.Show();
    }

in form2 constructer

public Form2(ref Form1 form1handel)
    {
        firstformRef = form1handel;
        InitializeComponent();
    }

in form2 crate variable Form1 firstformRef;

private void Submitt_Click(object sender, EventArgs e)
    {
        firstformRef.TextBoxString = textBox1.Text;
        this.Close();
        firstformRef.Show();

    }
share|improve this answer
Why create a new Form1? Why not pass this to the Form2 constructor? – Jon of All Trades Jan 29 at 21:30

Form1 Code :

private void button1_Click(object sender, EventArgs e)
{
            Form2 f2 = new Form2();
            f2.ShowDialog();
            MessageBox.Show("Form1 Message :"+Form2.t.Text); //can put label also in form 1 to show the value got from form2
}

Form2 Code :

        public Form2()
        {
            InitializeComponent();
            t = textBox1;                        //Initialize with static textbox
        }
        public static TextBox t=new TextBox();   //make static to get the same value as inserted
        private void button1_Click(object sender, EventArgs e)
        {

            this.Close();

        }

It Works!

share|improve this answer
I tried the above code ,but never worked – Millar Dec 14 '12 at 0:01

Define a property

public static class ControlID {

public static string TextData { get; set; } }

In the form2

private void button1_Click(object sender, EventArgs e) {

        ControlID.TextData = txtTextData.Text;

}

Getting the data in form1 and form3

private void button1_Click(object sender, EventArgs e) {

    string text=  ControlID.TextData;   

}

share|improve this answer

How to pass the values from form to another form

1.) Goto Form2 then Double click it. At the code type this.

public Form2(string v)
{
  InitializeComponent();
  textBox1.Text = v;
}

2.) Goto Form1 then Double click it. At the code type this. //At your command button in Form1

private void button1_Click(object sender, EventArgs e)
{
   Form2 F2 = new Form2(textBox1.Text);
   F2.Show();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.