Bonjour,
voila mon problème : J'ai un première Form1 dans la quelle j'ai un bouton qui contient le code suivant :
m_Form2 = new Form2(this.m_Access);
this.ShowInTaskbar = false;
this.Hide();
m_Menu.ShowDialog();
this.Show();
this.ShowInTaskbar = true;
Dans cette Form2, j'ai un bouton qui contient le code suivant :
m_Form3 = new Form3();
this.ShowInTaskbar = false;
this.Hide();
m_Menu.ShowDialog();
this.Show();
this.ShowInTaskbar = true;
Le problème c'est que quand je referme ma Form3, je reviens directement à la form1. La Form2 se ferme toute seule ...
Si quelqu'un sait pourquoi sa peut faire sa je vous en remerci d'avance !!
Guillaume.
________________________________________________________________________
Hardware is what we play with until it breaks, Software is what we play with until it works !
