Exemplo n.º 1
0
        private void btnAgregar_Click(object sender, EventArgs e)
        {
            CLS_Correos GuardaC = new CLS_Correos();

            GuardaC.CorreoNombre = txtCorreoDestino.Text;
            GuardaC.MtdSeleccionarEspecifica();
            if (GuardaC.Exito)
            {
                if (GuardaC.Datos.Rows.Count == 0)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = txtCorreoDestino.Text;
                    dt.Rows.Add(dr);
                    dtgCorreosDestino.DataSource = dt;
                    GuardaC.MtdEliminar();
                    for (int x = 0; x < dtgValoresCorreosDestino.RowCount; x++)
                    {
                        GuardaC.CorreoNombre = dt.Rows[x][0].ToString();;
                        GuardaC.MtdInsertarCorreoDestino();
                    }
                    XtraMessageBox.Show("Se han Guardado los Registros con Exito");
                    txtCorreoDestino.Text = string.Empty;
                }
            }
            else
            {
                XtraMessageBox.Show("Este Correo ya Existe en la Lista");
            }
        }
Exemplo n.º 2
0
 private void dtgCorreosDestino_DoubleClick(object sender, EventArgs e)
 {
     DialogResult = XtraMessageBox.Show("¿Desea Eliminar este correo", "Eliminar Correo", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
     if (DialogResult == DialogResult.Yes)
     {
         try
         {
             foreach (int i in this.dtgValoresCorreosDestino.GetSelectedRows())
             {
                 DataRow     row       = this.dtgValoresCorreosDestino.GetDataRow(i);
                 string      vCorreoId = row["IdCorreo"].ToString();
                 CLS_Correos GuardaC   = new CLS_Correos();
                 GuardaC.IdCorreo = Convert.ToInt32(vCorreoId);
                 GuardaC.MtdEliminar();
                 if (GuardaC.Exito)
                 {
                     CargarCorreosDestino();
                 }
             }
         }
         catch (Exception ex)
         {
             XtraMessageBox.Show(ex.Message);
         }
     }
 }
Exemplo n.º 3
0
        private void dtgCorreosDestino_DoubleClick(object sender, EventArgs e)
        {
            txtCorreoDestino.Text = dt.Rows[FilaSelect][0].ToString().Trim();
            dt.Rows.RemoveAt(FilaSelect);
            dtgCorreosDestino.DataSource = dt;
            CLS_Correos GuardaC = new CLS_Correos();

            GuardaC.MtdEliminar();
            for (int x = 0; x < dtgValoresCorreosDestino.RowCount; x++)
            {
                GuardaC.CorreoNombre = dt.Rows[x][0].ToString();;
                GuardaC.MtdInsertarCorreoDestino();
            }
        }