private void dgvDetalleCaja_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (this.dgvDetalleCaja.Rows.Count > 0 && this.cbBusTipoOperaciones.Text == "Cuotas Impagas") { try { ABMCuotas _cuotas = new ABMCuotas(); _cuotas._idcurso = this.dgvDetalleCaja[9, this.dgvDetalleCaja.CurrentCell.RowIndex].Value.ToString(); _cuotas.ShowDialog(); } catch (Exception err) { MessageBox.Show("Tiene que seleccionar una mora curso sobre el cual se cobrar la cuota al alumno!!!", "Falta"); } } }
private void btnPagarCuota_Click(object sender, EventArgs e) { try { ABMCuotas _cuotas = new ABMCuotas(); _cuotas._idcurso = this.dgvCursos[0, this.dgvCursos.CurrentCell.RowIndex].Value.ToString(); _cuotas.ShowDialog(); this.dgvCursos.DataSource = this._cursos.BuscarInscripcionesCursosSocios("0", this.txtDni.Text, "Inscripciones"); this.dgvCursos.DataMember = "Inscripciones"; if (this.dgvCursos.Rows.Count > 0) { this.dgvCursos.Columns[0].Visible = false; this.gbxDetalleCursos.Enabled = true; } } catch (Exception err) { MessageBox.Show("Tiene que seleccionar un curso sobre el cual se cobrar la cuota al alumno!!!", "Falta"); } }