コード例 #1
0
 private void nouveauClientToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PL.CreaNewClient NewClient = new PL.CreaNewClient();
     NewClient.Show();
     ParamFenetre(NewClient);
     mdiobj = this;
 }
コード例 #2
0
 private void professionnelToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PL.Form3 CAPro = new PL.Form3();
     CAPro.Show();
     ParamFenetre(CAPro);
     mdiobj = this;
 }
コード例 #3
0
 private void RechUneCommandeToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PL.ListComClient RechComClient = new PL.ListComClient();
     RechComClient.Show();
     ParamFenetre(RechComClient);
     mdiobj = this;
 }
コード例 #4
0
 private void NewCommandeToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PL.Commande NewCom = new PL.Commande();
     NewCom.Show();
     ParamFenetre(NewCom);
     mdiobj = this;
 }
コード例 #5
0
 private void rechercherClientToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Global.Recherche    = true;
     Global.Modification = false;
     Global.Supprime     = false;
     PL.RechClient RechClient = new PL.RechClient();
     RechClient.Show();
     ParamFenetre(RechClient);
     mdiobj = this;
 }
コード例 #6
0
 private void deconnexionToolStripMenuItem_Click(object sender, EventArgs e)
 {
     fichierToolStripMenuItem.Enabled     = false;
     deconnexionToolStripMenuItem.Enabled = false;
     clientToolStripMenuItem.Enabled      = false;
     commandeToolStripMenuItem.Enabled    = false;
     fournisseurToolStripMenuItem.Enabled = false;
     catalogueToolStripMenuItem.Enabled   = false;
     PL.Authentification connexion = new PL.Authentification();
     connexion.Show();
     ParamFenetre(connexion);
     mdiobj = this;
 }
コード例 #7
0
 private void Village_Green_Load(object sender, EventArgs e)
 {
     deconnexionToolStripMenuItem.Enabled = false;
     clientToolStripMenuItem.Enabled      = false;
     commandeToolStripMenuItem.Enabled    = false;
     fournisseurToolStripMenuItem.Enabled = false;
     catalogueToolStripMenuItem.Enabled   = false;
     PL.Authentification connexion = new PL.Authentification();
     connexion.Show();
     ParamFenetre(connexion);
     mdiobj = this;
     Global.Modification = false;
     Global.Recherche    = false;
     Global.Supprime     = false;
 }