Exemple #1
0
 private void BTN_AJOUTER_Click(object sender, EventArgs e)
 {
     try
     {
         DataTable dt = CLIENT_APP_PARAM.gcws.SELECT_ALL_MAGAZIN();
         if (dt.Rows.Count > 0)
         {
             CHM_FICHE_BON_LIVRAISON f = new CHM_FICHE_BON_LIVRAISON();
             //f.MdiParent = CLIENT_APP_PARAM.Fenetre_principale;
             //f.WindowState = FormWindowState.Maximized;
             f.StartPosition = FormStartPosition.CenterScreen;
             f.OnClose      += new CHM_FICHE_BON_LIVRAISON.WindowClose(f_OnClose);
             f.ShowDialog();
         }
         else
         {
             MessageBox.Show("Veuillez pramètrer vos magasins");
         }
     }
     catch (Exception er)
     {
         MessageBox.Show(er.Message);
     }
 }