Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.