2014-09-25 84 views

回答

9

,因为它是为我工作在IE9你可以试试这个:

For below showed download

  1. 复制文件C:\Windows\System32\UIAutomationCore.dll文件到用户的文档即C:\Users\admin\Documents然后添加到您的宏文件的参考UIAutomationClient
  2. 粘贴下面的代码你的模块中:

    Option Explicit 
        Dim ie As InternetExplorer 
        Dim h As LongPtr 
        Private Declare PtrSafe Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As LongPtr, ByVal hWnd2 As LongPtr, ByVal lpsz1 As String, ByVal lpsz2 As String) As LongPtr 
    
    Sub Download() 
        Dim o As IUIAutomation 
        Dim e As IUIAutomationElement 
        Set o = New CUIAutomation 
        h = ie.Hwnd 
        h = FindWindowEx(h, 0, "Frame Notification Bar", vbNullString) 
        If h = 0 Then Exit Sub 
    
        Set e = o.ElementFromHandle(ByVal h) 
        Dim iCnd As IUIAutomationCondition 
        Set iCnd = o.CreatePropertyCondition(UIA_NamePropertyId, "Save") 
    
        Dim Button As IUIAutomationElement 
        Set Button = e.FindFirst(TreeScope_Subtree, iCnd) 
        Dim InvokePattern As IUIAutomationInvokePattern 
        Set InvokePattern = Button.GetCurrentPattern(UIA_InvokePatternId) 
        InvokePattern.Invoke 
    End Sub 
    

试着在你结束。

+1

当我试图添加refernence到UIAutomationClient它抛出一个错误: “加载DLL时出错”。 – ramses1592 2014-11-21 13:42:56

+2

你必须将UIAutomationCore.dll文件复制到你的文档文件夹中。 – Lifewithsun 2014-11-21 15:17:26

+1

'PtrSafe'没有被识别。它说*预期:子或功能* – xameeramir 2015-09-15 11:15:58

0
'This is a working code for vba in excel 2007 to open a file 
'But you need to add the "UIAutomationCore.dll" to be copied 
'from "C:\Windows\System32\UIAutomationCore.dll" into the 
'path "C:\Users\admin\Documents"  
'The path where to copy may be different and you can find it when you check on 
'the box for UIAutomationClient - the location is given under it. 
'Tools-references 

Option Explicit 
    Dim ie As InternetExplorer 
    Dim h As LONG_PTR 
    Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As LONG_PTR, ByVal hWnd2 As LONG_PTR, ByVal lpsz1 As String, ByVal lpsz2 As String) As LONG_PTR 


Sub click_open() 
    Dim o As IUIAutomation 
    Dim e As IUIAutomationElement 
    Dim sh 
    Dim eachIE 

Do 

    Set sh = New Shell32.Shell 
    For Each eachIE In sh.Windows 
     ' Check if this is the desired URL 

    ' Here you can use your condition except .html 
    ' If you want to use your URL , then put the URL below in the code for condition check. 
    ' This code will reassign your IE object with the same reference for navigation and your issue will resolve. 
     If InStr(1, eachIE.LocationURL, "<enter your page url>") Then 
     Set ie = eachIE 
     Exit Do 
     End If 
    Next eachIE 
Loop 

Set o = New CUIAutomation 
h = ie.Hwnd 
h = FindWindowEx(h, 0, "Frame Notification Bar", vbNullString) 
If h = 0 Then Exit Sub 

Set e = o.ElementFromHandle(ByVal h) 
Dim iCnd As IUIAutomationCondition 
Set iCnd = o.CreatePropertyCondition(UIA_NamePropertyId, "Open") 


Dim Button As IUIAutomationElement 
Set Button = e.FindFirst(TreeScope_Subtree, iCnd) 
Dim InvokePattern As IUIAutomationInvokePattern 
Set InvokePattern = Button.GetCurrentPattern(UIA_InvokePatternId) 
InvokePattern.Invoke 

End Sub 
0

我将快捷键发送到IE11。

注意:如果IE不是您计算机上的活动窗口,代码将无法按预期运行,因此在调试模式下它将不起作用。下面是快捷键以及如何发送它们。

  • 快捷键:Alt键+小号
  • VBA:Application.SendKeys "%{S}"