I have the following code:
Option Explicit
Sub test()
Dim Automation As New CUIAutomation
Dim App As IUIAutomationElement
Set App = FindChildByAutomationId(Automation.GetRootElement, "Client")
Dim WindowOpenedHandler As IUIAutomationEventHandler
Automation.AddAutomationEventHandler UIA_Window_WindowOpenedEventId, App, TreeScope_Children, Nothing, WindowOpenedHandler
End Sub
Sub HandleAutomationEvent(sender As IUIAutomationElement, eventid As Long)
MsgBox sender.CurrentAutomationId
End Sub
Function FindChildByAutomationId(Target As IUIAutomationElement, Automationid As String) As IUIAutomationElement
Dim Automation As New CUIAutomation
Dim Condition As IUIAutomationCondition
Set Condition = Automation.CreatePropertyCondition(UIA_AutomationIdPropertyId, Automationid)
Set FindChildByAutomationId = Target.FindFirst(TreeScope_Children, Condition)
End Function
As you can see, I'm trying to capture the window open events of an application and call HandleAutomationEvent. Right now, the code produces an error because WindowOpenedHandler is null and I'm passing it to Automation.AddAutomationEventHandler(). The problem is, I can't figure out a way to initalize the WindowOpenedHandler.
Also, why is there so little information about using automation elements in VBA? Where can I find more information?
To compile my code, you have to add UIAutomationClient as a reference in the VBE (under tools->references). You also have the copy the UIAutomationCore.dll from System32 into your documents for to import the reference.