Exemplo n.º 1
0
        private void comboBox3_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            CHM_ARTICLE_FOURNISSEUR f = new CHM_ARTICLE_FOURNISSEUR();

            f.select_fournisseur_event += new CHM_ARTICLE_FOURNISSEUR.fournisseur_select(f_select_fournisseur_event);
            f.ShowDialog();
        }
Exemplo n.º 2
0
 private void btn_select_fournisseur_Click(object sender, EventArgs e)
 {
     try
     {
         CHM_ARTICLE_FOURNISSEUR f = new CHM_ARTICLE_FOURNISSEUR();
         f.StartPosition             = FormStartPosition.CenterScreen;
         f.select_fournisseur_event += new CHM_ARTICLE_FOURNISSEUR.fournisseur_select(f_select_fournisseur_event);
         f.ShowDialog();
     }
     catch (Exception er)
     {
         MessageBox.Show(er.Message, "Error");
     }
 }