private void CargarImagen()
 {
     if (VariablesPublicas.compruebaConexion() == true)
     {
         try
         {
             var xTipDoc = "...";
             if (cboTipdoc.SelectedValue != null)
             {
                 xTipDoc = cboTipdoc.SelectedValue.ToString();
             }
             if (xTipDoc == "1")
             {
             }
             if (xTipDoc == "6")
             {
                 myInfoSunat = new DatoSUNAT();
                 ImagenSunat.Image = myInfoSunat.GetCapchaSunat;
             }
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message);
     //                    throw ex;
         }
     }
     else
     {
         lblDireccion.Text = "Sin conexión a Internet";
     }
 }
 private void CargarImagen()
 {
     if (VariablesPublicas.compruebaConexion() == true)
     {
         try
         {
             if (myInfo == null)
             {
                 myInfo = new DatoSUNAT();
             }
             pictureCapcha.Image = myInfo.GetCapchaSunat;
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
     else
     {
         MessageBox.Show("Sin conexión a Internet", "Error de Conexión", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }