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

I had entered some data in the TextBox and selected item in a combobox in form2 and want to use same data in form1 how can I do so....
I tried this code frmConfig is form2 and txtSrcIP is the TextBox

public partial class Form1 : Form
{    
    frmConfig f2 = new frmConfig();

    public Form1(frmConfig Cont)
    {
            f2 = Cont;
    }

    String SIp = f2.txtSrcIP.text;
}

The error is showing in this line String SIp = f2.txtSrcIP.text; as A field initializer cannot reference the non static field method or property

frmConfig body public partial class frmConfig : Form { private Form1 f1;

    public frmConfig()
    {
        InitializeComponent();
    }
    private void btnConnect_Click(object sender, EventArgs e)
    {



            // Open connection to the database
            string conString = "server="+txtSrcIP.Text+";uid="+txtSrcUserId.Text+";pwd="+txtSrcPwd.Text; 

            using (SqlConnection con = new SqlConnection(conString))
            {
                con.Open();

                // Set up a command with the given query and associate
                // this with the current connection.
                using (SqlCommand cmd = new SqlCommand("SELECT name from sys.databases", con))
                {
                    using (IDataReader dr = cmd.ExecuteReader())
                    {
                        while (dr.Read())
                        {
                            cbSrc.Items.Add(dr[0].ToString());
                        }
                    }
                }
            }

    private void btnNext_Click(object sender, EventArgs e)
    {
        if (cbSrc.SelectedItem != null && cbSrc.SelectedItem != "" && cbDest.SelectedItem != null && cbDest.SelectedItem != "")
        {

            this.Hide();
            //Form1 f1 = new Form1();
            f1.Show();

            this.Close();
        }
        else
        {
            MessageBox.Show("Enter all the details");
        }
    }

    }

this is what i am doing so i want all the textbox and combox value in form1

share|improve this question
You need to raise an event when some state changes. Checkout observer pattern : en.wikipedia.org/wiki/Observer_pattern – Mert Dec 5 '12 at 11:18
String SDb = f2.cbSrc.SelectedItem.ToString(); error = object reference not set to an instance of an object – Ajit Nair Dec 5 '12 at 11:39

5 Answers

up vote 0 down vote accepted
static frmConfig f2 = new frmConfig();

So, how about these changes:

public partial class Form1 : Form
{    
    static frmConfig f2 = new frmConfig();

    public Form1(frmConfig Cont)
    {
        f2 = Cont;
    }

    public String SIp;
}

...

private void btnNext_Click(object sender, EventArgs e)
{
    if (cbSrc.SelectedItem != null && cbSrc.SelectedItem != "" && cbDest.SelectedItem != null && cbDest.SelectedItem != "")
    {

        this.Hide();
        //Form1 f1 = new Form1();
        f1.SIp = f2.txtSrcIP.text;
        f1.Show();

        this.Close();
    }
    else
    {
        MessageBox.Show("Enter all the details");
    }
}
share|improve this answer
It helped with textbox but value of combobox is not retriving – Ajit Nair Dec 5 '12 at 11:38
error = object reference not set to an instance of an object – Ajit Nair Dec 5 '12 at 11:40
Could you include the frmConfig class definition? Or at least, the ComboBox definition? – Alex Filipovici Dec 5 '12 at 11:40
that's probably because your form controls are still not initialized – Alex Filipovici Dec 5 '12 at 11:42
i had posted the whole form2 code above check it – Ajit Nair Dec 5 '12 at 11:48
show 3 more comments

Create a public property on f2 that exposes the Text property of the control you require.

public string TxtSrcIPValue
{
    get
    {
        return this.txtSrcIP.text
    }
}

Then use this property to access the value.

Private string SIp;
public Form1(frmConfig Cont)
{
        f2 = Cont;
        SIp = f2.TxtSrcIPValue;   // Set the value once the form has been loaded
}
share|improve this answer

The control you want to use, change 'modifier' property so you can acces it from outside.

share|improve this answer

Basically that you need to set this variable in the constructor.

For example:

public class TestClass
{
  MyFirstObject t = MyClass.GetObject("something");
}

You need to set the value of the variable in a constructor.

// added a default constructor that sets the default value of MyFirtObject
public class TestClass
{
  MyFirstObject t;

  //constructor -- called when you use the keyword new to create a new Test object.
  public TestClass()
  {
    //set default value for my object
    t = MyClass.GetObject("something");
  }
}
share|improve this answer

Quoting MSDN, A variable initialiser for an instance field cannot reference the instance being created, so you need to initialise the fields in the constructor instead.

public partial class Form1 : Form
{    
    frmConfig f2;
    String SIp;

    public Form1(frmConfig Cont)
    {
        f2 = Cont;
        String SIp = f2.txtSrcIP.text;
    }
}
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.