2017-03-01 7 views
0

을 opned,하지만 난 여전히도 참조를하지 추가 한VBA는 이미 IE 창을 열어 연결을 시도하고있어 IE 창

Run time error 429 ActiveX Component can't create object

2 라인에서 몇 가지 문제가있다 IE 창에 액세스 할 수 있습니다. 아래는 코드입니다.

Sub A() 
    Set objShell = CreateObject("Shell.Application") 
    IE_count = objShell.Windows.Count 
    For x = 0 To (IE_count - 1) 
    my_url = objShell.Windows(x).Document.Location 
    my_title = objShell.Windows(x).Document.Title 

    if my_title Like "Put your webpage title here" & "*" Then 
     Set ie = objShell.Windows(x) 
     Exit For 
    Else 
    End If 
    Next 
End Sub 

답변