private void btnNuevo_Click(object sender, EventArgs e) { frmGrupo ofrmGrupo = new frmGrupo(); DialogResult drABIERTO = ofrmGrupo.ShowDialog(); if (drABIERTO == DialogResult.OK) { ArmarGrilla(); } }
private void btnModificar_Click(object sender, EventArgs e) { if (bdsGrupos.Current != null) { oGrupo = (Grupo)bdsGrupos.Current; frmGrupo ofrmGrupo = new frmGrupo("MODIFICACION", oGrupo); DialogResult drABIERTO = ofrmGrupo.ShowDialog(); if (drABIERTO == DialogResult.OK) { ArmarGrilla(); } } else { MessageBox.Show("Debe seleccionar un Grupo", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } }