Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Passing values between forms
Message
De
16/03/2003 12:55:01
 
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00766332
Message ID:
00766335
Vues:
24
Ahmad,

I assume that you're talking about WinForms, correct? I think the best way is to use parameters, which you put in the constructor of your form.
// Your form's constructor:
public MyForm(int MyParm1, string MyParm2)
{
}

// Calling the form:
MyForm oForm = new MyForm(MyIntParm, MyStringParm);
oForm.Show();
~~Bonnie


>Dear All,
>
>What is the best way to pass variable(s) from form to another?
>Is it making the variable as public, or there is a better way ?
>
>Thanks for the advice
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform