private void tsEditar_Click(object sender, EventArgs e) { frmPopupDoctor ofrmPopupDoctor = new frmPopupDoctor(); ofrmPopupDoctor.iidDoctor = (int)dgvDoctor.CurrentRow.Cells[0].Value; ofrmPopupDoctor.ShowDialog(); if (ofrmPopupDoctor.DialogResult.Equals(DialogResult.OK)) { listarDoctor(); } }
private void tsNuevo_Click(object sender, EventArgs e) { frmPopupDoctor ofrmPopupDoctor = new frmPopupDoctor(); ofrmPopupDoctor.iidDoctor = 0; ofrmPopupDoctor.ShowDialog(); if (ofrmPopupDoctor.DialogResult.Equals(DialogResult.OK)) { listarDoctor(); } }