private void BtnNuevo_Click(object sender, EventArgs e) { FrmPopupDoctor frmPopupDoctor = new FrmPopupDoctor(); frmPopupDoctor.accion = "Nuevo"; frmPopupDoctor.ShowDialog(); if (frmPopupDoctor.DialogResult.Equals(DialogResult.OK)) { ListadorGeneral(); } }
private void BtnEditar_Click(object sender, EventArgs e) { FrmPopupDoctor frmPopupDoctor = new FrmPopupDoctor(); frmPopupDoctor.accion = "Editar"; frmPopupDoctor.id = DgvDoctor.CurrentRow.Cells[5].Value.ToString(); frmPopupDoctor.ShowDialog(); if (frmPopupDoctor.DialogResult.Equals(DialogResult.OK)) { ListadorGeneral(); } }