자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vb6.0/vba [vb6.0/vba] Find IE / 열려있는 익스플로워(InternetExplorer) 창을 찿아 URL을 바꿈

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 6,587회 작성일 20-03-16 21:51

본문


열려있는 인터넷 익스플로워(InternetExplorer) 창을 찿아서 모두 URL을 바꾸어 주는 예제 입니다.
 
 
 
 
Dim IE As Object
 
Sub FindIE()
    Dim obj As Object, Count&, URL$, Title$
    Set obj = CreateObject("Shell.Application")
    On Error Resume Next
    Count = obj.Windows.Count
    For x = 0 To (Count - 1)
        URL = obj.Windows(x).Document.Location
        Title = obj.Windows(x).Document.Title
        If TypeName(obj.Windows(x).Document) = "HTMLDocument" Then
            Set IE = obj.Windows(x)
            IE.Navigate2 "http://map.daum.net/?q=" + UTF8([A1].Text)
        End If
        Debug.Print Title, URL, TypeName(obj.Windows(x).Document)
    Next
End Sub
 
 
 
 

댓글목록

등록된 댓글이 없습니다.