8

In my application i open new form:

private void button1_Click(object sender, EventArgs e)
{
    Form2 = new Form2 ("bla bla");
    Form2 .ShowDialog();
}

This is my form that i am opening and want to pass back parameter:

public partial class Form2: Form
{
    public Form2 (string file)
    {
        InitializeComponent();
    }
}
1
  • Possible duplicate of this question Commented Mar 2, 2014 at 20:57

1 Answer 1

16

You can define public variables which want to return in Form2 and access them in Form1:

public partial class Form2: Form
{
    public int x;    //can be private too
    public string y; //can be private too

    public Form2 (string file)
    {
        InitializeComponent();
    }

    //define some function which changes defined global values
}

In Form1:

Form2 form2 = new Form2("bla bla");
form2.ShowDialog();
MessageBox.Show(form2.x.ToString());
MessageBox.Show(form2.y);
Sign up to request clarification or add additional context in comments.

1 Comment

also is needed static keyword after public

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.