Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 28th, 2004, 01:05 AM
Registered User
 
Join Date: Apr 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Passing values between forms

I am trying to pass a value entered in a textbox to another form. How do i do that.
 
Old April 28th, 2004, 04:07 AM
Authorized User
 
Join Date: Apr 2004
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,

This is one way of doing it.

Attach one variables each to your individual forms.

(ClassView -> Right click form name -> Add -> Add Field)

public static string strFormOne;

public static string strFormTwo;

Then create a click event in the first form(This where you enter your data).

private void button1_Click(object sender, System.EventArgs e)
{
  Form1.strFormOne = textBox1.Text;
  Form2.strFormTwo = Form1.strFormOne;
  MessageBox.Show("Form One " + Form1.strFormOne);
  MessageBox.Show("Form Twee " + Form2.strFormTwo);
  Form2 frm = new Form2();
  frm.Show();
}

This part you can put in an load statement or in a click event.

private void button1_Click(object sender, System.EventArgs e)
{
    label1.Text = Form2.strFormTwo;
    MessageBox.Show("Inside Form Twee " + Form2.strFormTwo);
}

I did test the code(built this one quickly) so it should work.

As I said this is one way of doing it, if you find a better way, let me know.

Good luck

Jan


dude_in_africa





Similar Threads
Thread Thread Starter Forum Replies Last Post
Passing Parameters Between Two Forms sjf905 C# 2 January 13th, 2007 10:44 PM
Passing variables between forms arcuza General .NET 1 July 11th, 2005 09:08 AM
Passing data between forms pactite Access 5 June 4th, 2005 03:02 PM
Passing data between forms rwalker VS.NET 2002/2003 6 February 17th, 2005 08:17 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.