Recevez directement des messages des recruteurs à travers la nouvelle fonctionnalité de messagerie instantanée!
Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
Let say that you are loading Form1 and want to run Form2:
Form2 frm = new Form2();
Form2.Show();
Or
using(Form2 frm = new Form2())
{
frm.ShowDialog();
}
Annuler Report Answer