In c# application I have a splitcontainer in which in right panel i have a form.I want to retrieve the values of the textboxes of the form when I click a button outside the form inside the panel. how to do it?

link|improve this question

33% accept rate
1  
Pavan, please do a little research on Google or something before posting. You'll get a faster and more exact answer if you show exactly what you've tried so far. – Grant Winney Sep 27 '11 at 13:01
feedback

3 Answers

up vote 3 down vote accepted

May be you are having a UserControl in the Right panel of the SplitContainer.

In you that userControl class write a public method to get values.

public string GetValueOfTheTextBox()
{
    return textBox.Text;
}

Add the userControl the SplitContainer.

MyUserControl myUserControl = new MyUserControl();
//Add this to the splitContainer right panel.

From out side of the MyUserControl class you can call GetValueOfTheTextBox method.

string text = myUserControl.GetValueOfTheTextBox();
link|improve this answer
feedback

You need to reference the other form. Let's say you have Form1 and Form2. Form2 has all of the text boxes on it.

Form1.cs - Button1_Click():

// Create an instance of Form2 (the form containing the textBox controls).
    Form2 frm2 = new Form2();
// Make a call to the public property which will return the textBox's text.
    textBox1.Text = frm2.TextBox1;

Form2.cs:

1.Make a textBox control and name it 'textBox1'.

2.Create a public property that will return an reference of textBox1.

    public string TextBox1
    {
        get
        {
            return textBox1.Text;
        }
    }

So, what exactly are we doing here?

  1. From Form1.cs we are making a call to the Public property 'TextBox1' in Form2.cs.
  2. The Public property TextBox1 in Form2.cs returns the text from the Form2.textBox1 control - which is the control you want the text of.
link|improve this answer
That would work, but unless the OP wants to be able to control every facet of the TextBox from the parent form, I'd just return textBox1.Text. – Grant Winney Sep 27 '11 at 12:50
I suppose you are correct. I will update the answer accordingly. – Evan Sep 27 '11 at 12:51
feedback

If Form2 is the form / user control inside the panel, create public properties to "get" the value of each textbox, and then refer to those properties in the parent form (Form1).

For instance, if Form2 has textboxes for first name and last name, create properties to get their value:

public string FirstName
{
    get { return txtFirstName.Text; }
}

public string LastName
{
    get { return txtLastName.Text; }
}

Then in Form1, assuming form2 is the instance of Form2 that you inserted into the panel, you can refer to those properties like this:

string firstName = form2.FirstName;
string lastName = form2.LastName;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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