Click here to Skip to main content
15,918,275 members
Home / Discussions / C#
   

C#

 
QuestionPassing strings between windows forms Pin
Phil Saville1-Mar-10 23:26
Phil Saville1-Mar-10 23:26 
AnswerRe: Passing strings between windows forms Pin
OriginalGriff1-Mar-10 23:51
mveOriginalGriff1-Mar-10 23:51 
AnswerRe: Passing strings between windows forms Pin
DaveyM692-Mar-10 1:01
professionalDaveyM692-Mar-10 1:01 
AnswerRe: Passing strings between windows forms Pin
Som Shekhar2-Mar-10 1:03
Som Shekhar2-Mar-10 1:03 
GeneralRe: Passing strings between windows forms Pin
Syed Shahid Hussain2-Mar-10 1:27
Syed Shahid Hussain2-Mar-10 1:27 
GeneralRe: Passing strings between windows forms Pin
OriginalGriff2-Mar-10 1:52
mveOriginalGriff2-Mar-10 1:52 
GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 2:28
Phil Saville2-Mar-10 2:28 
GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 2:46
Phil Saville2-Mar-10 2:46 
heres an update of my problem since i have tried to change it a little...


i have two simple forms, the first just has just a button on which opens the 2nd form so the 2 forms are open at the same time. On this 2nd form i then have a text box and another button, the user will enter some text into the textbox and then press the button. Once this button is pressed i would like the text to be passed to the first form. I have tried using the following code...

Form1:

public partial class Form1 : Form
    {
        string text;

        public Form1(string receivedText)
        {
            text = receivedText;
            InitializeComponent();
        }

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

        private void Form1_Load(object sender, EventArgs e)
        {
            if (text == "")
            {
            }
            else
            {
                label1.Text = text;
            }
        }       
    }


Form2:

public partial class Form2 : Form
    {
        public Form2()
        {          
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form1 f = new Form1(textBox1.Text);
            this.Hide();          
        }       
    }


This does not seem to work though and i get the error..." 'Pass.Form1' does not contain a constructor that takes '0' arguments.
GeneralRe: Passing strings between windows forms Pin
Rasepretrep22-Mar-10 4:03
Rasepretrep22-Mar-10 4:03 
GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 4:18
Phil Saville2-Mar-10 4:18 
GeneralRe: Passing strings between windows forms Pin
OriginalGriff2-Mar-10 4:34
mveOriginalGriff2-Mar-10 4:34 
AnswerRe: Passing strings between windows forms Pin
DX Roster4-Mar-10 18:38
DX Roster4-Mar-10 18:38 
QuestionExporting DataGridView to excel Pin
Hum Dum1-Mar-10 23:18
Hum Dum1-Mar-10 23:18 
AnswerRe: Exporting DataGridView to excel Pin
Rashmi_Karnam2-Mar-10 0:13
Rashmi_Karnam2-Mar-10 0:13 
AnswerRe: Exporting DataGridView to excel Pin
Dan Mos2-Mar-10 1:30
Dan Mos2-Mar-10 1:30 
GeneralRe: Exporting DataGridView to excel Pin
Hum Dum2-Mar-10 2:04
Hum Dum2-Mar-10 2:04 
GeneralRe: Exporting DataGridView to excel [modified] Pin
Dan Mos2-Mar-10 2:17
Dan Mos2-Mar-10 2:17 
QuestionControl Authoring OnPaint not working as expected Pin
TheFoZ1-Mar-10 22:54
TheFoZ1-Mar-10 22:54 
AnswerRe: Control Authoring OnPaint not working as expected Pin
OriginalGriff1-Mar-10 23:54
mveOriginalGriff1-Mar-10 23:54 
GeneralRe: Control Authoring OnPaint not working as expected Pin
TheFoZ1-Mar-10 23:56
TheFoZ1-Mar-10 23:56 
QuestionC# - Fill a .xlsx / .xls - file with data based on a grid Pin
Mschauder1-Mar-10 22:44
Mschauder1-Mar-10 22:44 
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
TheFoZ1-Mar-10 23:54
TheFoZ1-Mar-10 23:54 
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
Rashmi_Karnam2-Mar-10 0:17
Rashmi_Karnam2-Mar-10 0:17 
AnswerRe: C# - Fill a .xlsx / .xls - file with data based on a grid Pin
Dan Mos2-Mar-10 1:32
Dan Mos2-Mar-10 1:32 
QuestionConverting to Hex Pin
Deepak.Prahlad1-Mar-10 22:28
Deepak.Prahlad1-Mar-10 22:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.