Ejemplo n.º 1
0
        private void button4_Click(object sender, EventArgs e)
        {
            CHM_LISTE_FACTURES f = new CHM_LISTE_FACTURES(2, "");

            f.MdiParent = CLIENT_APP_PARAM.Fenetre_principale;
            f.Show();
        }
Ejemplo n.º 2
0
 private void listeFacturesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (srcb.Current != null)
     {
         DataRowView        drv = (DataRowView)srcb.Current;
         CHM_LISTE_FACTURES l   = new CHM_LISTE_FACTURES(3, drv["CODE_CLIENT"].ToString());
         l.ShowDialog();
     }
 }
Ejemplo n.º 3
0
        private void btn_liste_commande_Click(object sender, EventArgs e)
        {
            CHM_LISTE_FACTURES f = new CHM_LISTE_FACTURES(1, "");

            f.RightToLeft = RightToLeft.No;
            f.WindowState = FormWindowState.Maximized;
            f.MdiParent   = CLIENT_APP_PARAM.Fenetre_principale;
            f.Show();
        }