美文网首页
Excel VBA切换识别IE窗口

Excel VBA切换识别IE窗口

作者: 林万程 | 来源:发表于2016-12-06 09:12 被阅读267次

    Dim objShell As Object
    Dim objIE As Object
    Dim n As Integer
    Set objShell = CreateObject("Shell.Application")
    For n = objShell.Windows.Count To 1 Step -1
    Set objIE = objShell.Windows(n - 1)
    If objIE Is Nothing Then
    Exit For
    End If
    If Right(UCase(objIE.FullName), 12) = "IEXPLORE.EXE" Then
    Debug.Print objIE.document.URL
    If objIE.document.URL = "对应网址" Then
    End If
    End If

    相关文章

      网友评论

          本文标题:Excel VBA切换识别IE窗口

          本文链接:https://www.haomeiwen.com/subject/mqolmttx.html