Beispiel #1
0
 private void btnmodifclient_Click(object sender, EventArgs e)
 {
     PL.FRM_Ajoute_Modifier_Client frmClient = new FRM_Ajoute_Modifier_Client(this);
     if (SelectVerif() == null)
     {
         for (int i = 0; i < dvgclient.Rows.Count; i++)
         {
             if ((bool)dvgclient.Rows[i].Cells[0].Value == true)// si le checkbox est coché on va afficher les informations dans le formulaire
             {
                 frmClient.IdSELECT                = (int)dvgclient.Rows[i].Cells[1].Value;
                 frmClient.txtNomClient.Text       = dvgclient.Rows[i].Cells[2].Value.ToString();
                 frmClient.txtPrenomClient.Text    = dvgclient.Rows[i].Cells[3].Value.ToString();
                 frmClient.txtAdresseClient.Text   = dvgclient.Rows[i].Cells[4].Value.ToString();
                 frmClient.txtTelephoneClient.Text = dvgclient.Rows[i].Cells[5].Value.ToString();
                 frmClient.txtEmailClient.Text     = dvgclient.Rows[i].Cells[6].Value.ToString();
                 frmClient.txtPaysClient.Text      = dvgclient.Rows[i].Cells[7].Value.ToString();
                 frmClient.txtVilleClient.Text     = dvgclient.Rows[i].Cells[8].Value.ToString();
             }
         }
         frmClient.lbltitre.Text         = "Modifier Client";
         frmClient.btnActualiser.Visible = false;
         frmClient.ShowDialog();
     }
     else
     {
         MessageBox.Show(SelectVerif(), "Modification", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Beispiel #2
0
 private void btnajouteclient_Click(object sender, EventArgs e)
 {
     //Afficher formulaire de saisie
     PL.FRM_Ajoute_Modifier_Client frmClient = new FRM_Ajoute_Modifier_Client(this);
     frmClient.ShowDialog();
 }