Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to call a form with parameters
Message
De
05/03/2005 07:21:53
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00992985
Message ID:
00992986
Vues:
17
>Hi.
>How do you call a form with a parameter, and then use the parameter in the called form.
>
>(IN VFP, this is done by: Do Form MyCalledForm with MyParam1,MyParam2 and then in the Init of the MyCalled form, The MyParam1 and MyParam2 could be saved to properties of the MyCalledForm
>
>Any help appreciated.
>Regards,
>Gerard

A form has a constructor (that correspond to init in VFP) just like any other class. Prepare it to accept parameters then create an instance with parameters and show. ie:
//...
public SecondForm(string passed)
{
  InitializeComponent();
  textBox1.Text = passed;
}
//...

//Caller
SecondForm sf = new SecondForm("Some text");
sf.Show();
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform