VBA - Excel - 自动化错误未指定错误 [英] VBA - Excel - Automation Error Unspecified Error

查看:774
本文介绍了VBA - Excel - 自动化错误未指定错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我遇到了一个轻微的绊脚石,希望有人可以帮助我。简而言之,我需要访问一串网页(每个页面上的名称列表已经输入,该代码工作正常)。当我的代码访问每个页面时,我需要撤回信息。不幸的是,有一个问题 - 在我得到自动化错误未指定错误之前它甚至无法通过A列表,并且它永远不会在同一个地方。

So I ran into a slight stumbling block and hopefully here someone can help me. In short, I need to visit a string of webpages (the list of the names on each page are already input, that code works fine). As my code visits each page, I need to pull back information. Unfortunately, there's a problem - it can't even make it through the "A" list before I get "Automation Error Unspecified Error" and it's never at the same spot.

我已经尝试了正常步骤来解决这个问题。我已经安装了VB 6控件,我已经注册并重新注册了mscomctl.ocx,包括On Error Resume Next(它没有做任何事情)。

I've tried the "normal" steps to fix this. I've installed the VB 6 Controls and I've unregistered and re-registered mscomctl.ocx, and including On Error Resume Next (which doesn't do anything).

它通常会在它死亡之前达到100多个案例(如我前面所说的那样随机)。在弹出错误之后,当我尝试重新运行它时(有或没有更改)并且在第一个时出现错误。如果我重新启动计算机,它会让我再试一次(无论出于何种原因)但它仍然无法完成。

It usually reaches over 100 cases before it dies (randomly as I said earlier). And AFTER the error pops up, when I try to re-run it (with or without changes) and it errors on the first one. If I restart my computer it will let me try again (for whatever reason) but it still doesn't finish.

代码是否过于复杂,我需要减少它?我可以找到一种方法,让它一次只运行每个字母(运行所有的A,然后执行B等),但我仍然无法让它完成字母A.

Is the code too complex and I need to reduce it? I can probably find a way to make it only run for each letter at a time (run all A's, then do B's, etc) but I still can't even get it to complete the letter A.

我注意到在另一个线程中有人建议而不是使用IE交换到xmlhttp - 这是一个修复吗?问题是这个脚本太长了吗?我到底错在了什么?

I noticed in another thread someone had suggested instead of using IE to swap to xmlhttp - is that a fix for this? Is the problem that this script is too long? What exactly am I doing wrong here?

Sub Lookup()
Range("AI1").Value = "Unique ID"
Range("AJ1").Value = "Name"
Range("AK1").Value = "Birth Year"
Range("AL1").Value = "Title"
Range("AM1").Value = "State"
Range("AN1").Value = "Position"
Range("AO1").Value = "Country"
Range("AP1").Value = "Appointed"
Range("AQ1").Value = "Credentials"
Range("AR1").Value = "Terminations"
Dim i As Integer
For i = 1 To 26
    If i = 24 Then
        Range("X:X").End(xlUp).Select
        ActiveCell.Value = ""
    Else
    Dim ic As String
    ic = LCase(ConvertToLetter(i))
    Range(ic & "5000").End(xlUp).Select
    Dim J As Integer
    J = ActiveCell.Row
    Dim k As Integer
    For k = 2 To J
        Range(ic & k).Select
        Dim Lookup As String
        Lookup = ActiveCell.Value
        Dim IE As Variant
        Set IE = CreateObject("InternetExplorer.Application")
        IE.Visible = False
        IE.navigate "http://history.state.gov/departmenthistory/people/" & Lookup
        Do
            DoEvents
        Loop Until IE.readyState = READYSTATE_COMPLETE
        Dim Doc As HTMLDocument
        Set Doc = IE.document
        Dim Italics As Integer
        Italics = 0
        Dim EachA As Integer
        For EachA = 64 To 100
            Dim Position As String
            Position = Doc.getElementsByTagName("a")(EachA).innerText
            If Position = "Home" Then
                Exit For
            Else
                Dim NameBY As String
                NameBY = Doc.getElementsByTagName("h2")(1).innerText
                Dim TitleST As String
                TitleST = Doc.getElementsByTagName("p")(1).innerText
                Range("AJ" & "90000").End(xlUp).Offset(1, 0).Select
                ActiveCell.Value = NameBY
                TitleState = Split(TitleST, vbLf)
                ActiveCell.Offset(0, 2).Value = TitleState(0)
                On Error GoTo 1037
                ActiveCell.Offset(0, 3).Value = TitleState(1)
                On Error GoTo 1037
1037
                ActiveCell.Offset(0, 4).Select
                ActiveCell.Value = Position
                Dim EachLi As Integer
                EachLi = EachA - 1
                If Doc.getElementsByTagName("li").Item(EachLi + Italics).innerHTML Like "<em>*" Then
                    Italics = Italics + 1
                Else
                End If
                Dim JobList As String
                JobList = Doc.getElementsByTagName("li")(EachLi + Italics).innerText
                Dim Job() As String
                Job() = Split(JobList, vbLf)
                Dim JCount As Integer
                For JCount = LBound(Job) To UBound(Job)
                    ActiveCell.Offset(0, 1).Select
                    ActiveCell.Value = Job(JCount)
                Next JCount
            End If
        Next EachA
    Next k
End If
Next i
End Sub


推荐答案

我注意到的一件事是你在循环中不断创建新的IE对象,而你永远不会销毁它们或设置为 Nothing 。创建100多个IE实例是毫无意义的,昂贵的,也可能是错误的来源。

One thing I notice is that you're continually creating new IE objects inside the loop, and you're never destroying them or setting to Nothing. It's pointless, expensive, and possibly a source of error to be creating 100+ instances of IE.

我认为最初可能有助于创建IE的单个实例,然后在循环中使用相同的对象来导航所需的URL。

I think it will probably help to create a single instance of IE initially, and then use that same object inside the loop to navigate the desired URLs.

所以代替这个:

Dim IE As Variant
Set IE = CreateObject("InternetExplorer.Application")

执行此操作:

Dim IE as Object
If IE Is Nothing Then Set IE = CreateObject("InternetExplorer.Application")

这篇关于VBA - Excel - 自动化错误未指定错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆