Пример #1
0
 private void dgvAFILIADOS_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     //Abre el formulario Cobrar
     if (cAFILIADOS.Obtener_Afiliados(Convert.ToInt32(dgvAFILIADOS.CurrentRow.Cells[0].Value)).Forma_Pago == "Efectivo")
     {
         FrmCOBRAR FormCobrar = new FrmCOBRAR(cAFILIADOS.Obtener_Afiliados(Convert.ToInt32(dgvAFILIADOS.CurrentRow.Cells[0].Value)));
         FormCobrar.Show();
     }
 }
Пример #2
0
 private void btnCobrar_Click(object sender, EventArgs e)
 {
     //Abre el formulario de Cobrar con el objeto Afiliado
     FrmCOBRAR    FormCobrar = new FrmCOBRAR(cAFILIADOS.Obtener_Afiliados(Convert.ToInt32(dgvAFILIADOS.CurrentRow.Cells[0].Value)));
     DialogResult dr         = FormCobrar.ShowDialog();
 }