0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

特定のURLを表示しているIEをつかむ

Posted at
'--- 特定のURLを表示しているIEを掴まえてIEオブジェクトを返す関数 ---
Public Function getIE(ByVal URL As String)

    Dim objShell  As Object, objWin As Object
    
    'Shellオブジェクトを作成する
    Set objShell = CreateObject("Shell.Application")
    
    For Each objWin In objShell.Windows

        If objWin.Name = "Internet Explorer" Then

            If objWin.LocationURL = URL Then
                Set getIE = objWin
                Exit For
            End If

        End If

    Next
    
End Function

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?