private void btnNuevo_Click_1(object sender, EventArgs e)
 {
     Paciente.frmPaciente fPaciente = new Paciente.frmPaciente();
     fPaciente.RecibirDatos("", "", "", "", "", "", DateTime.Today, "", "", IdtEstablecimientoSalud, 1);
     fPaciente.MdiParent = this.MdiParent;
     if (fPaciente.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         CargarDatos();
         dgvGestante.Focus();
     }
 }
 private void btnModificar_Click(object sender, EventArgs e)
 {
     if (idtpaciente == "")
     {
         MessageBox.Show("Debe seleccionar nuevamente los datos", "Mensaje de error", MessageBoxButtons.OK, MessageBoxIcon.Error);
         return;
     }
     Paciente.frmPaciente fPaciente = new Paciente.frmPaciente();
     fPaciente.RecibirDatos(idtpaciente, codigohistoriaclinica, nombres, app, apm, DNI, fn, sdireccion, stelefono, IdtEstablecimientoSalud, 2);
     if (fPaciente.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         CargarDatos();
     }
 }