Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to call a form with parameters
Message
 
À
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:
00992987
Vues:
25
Hi Cetin.

Thanks for your reply... I'll have a play around with it.

One other thing taht springs to mind.... In Dot Net, how do you Set Exclu Off.
(There will be more than one person accessing VFP tables at the same time from a Dot Net App)


Regards,

Gerard

>>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform