Example #1
0
        private void BtnNuevo_Click(object sender, EventArgs e)
        {
            FrmPopupPacientes frmPopupPacientes = new FrmPopupPacientes();

            frmPopupPacientes.accion = "Nuevo";
            frmPopupPacientes.ShowDialog();
            if (frmPopupPacientes.DialogResult == DialogResult.OK)
            {
                ListadoGeneral();
            }
        }
Example #2
0
        private void BtnEditar_Click(object sender, EventArgs e)
        {
            FrmPopupPacientes frmPopupPacientes = new FrmPopupPacientes();

            frmPopupPacientes.accion     = "Editar";
            frmPopupPacientes.idPaciente = DgvPacientes.CurrentRow.Cells[0].Value.ToString();
            frmPopupPacientes.ShowDialog();
            if (frmPopupPacientes.DialogResult.Equals(DialogResult.OK))
            {
                ListadoGeneral();
            }
        }