I've managed to solve the problem myself!!! I'm so happy... lol. I didn't try autohotkeys but the solution I have found is a good one, or at least I think it is. An excellent explanation is provided here... http://msdn.microsoft.com/en-us/magazine/cc163288.aspx
Anyway, the solution is that vb.net has a "UI Automation" library/reference that you can add to your project. I saw it mentioned a few times online but couldn't figure out how to import it (sorry I'm a vb.net/coding newby). Anyway, you add the "UI Automation" reference to your project then you import it. You can then use the library to find all of the controls on the screen. This includes all of the buttons in the toolstrip.
I've added a code sample below to demonstrate how I solved it. I'm sure it's ropey in some way and could probably be done better but it works. Let me know what you think about the code/solution.
In order to run the code you need to know the index of the button and the index of the toolstrip. If you go through debug mode you can increment the index manually and check the controlName until the correct button comes up. In the example below I had to find the parent element (the window), then the child element (the toolstrip) and then the children of the child (all of the buttons under the toolstrip).
Imports system.windows.automation
Imports system.eventargs
'RoutedEvenArgs has to exist as a class so I declare it here...
Public class RoutedEventArgs Inherits EventArgs
end class
'my form code is all under one class - I'll probably break it up better
' but at the moment this is how it is
Public Class form1
Private Sub Button1_Click_1(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
'click the button of hte automation front end and
' call the findtreeviewdescendants procedure
FindTreeViewDescendants()
End Sub
Private Sub FindTreeViewDescendants()
'define the desktop as the rootelement as everywindow is a child of this element
Dim aedesktop As AutomationElement = AutomationElement.RootElement
'create an automationelementcollection variable to store the buttons
Dim aebuttons As AutomationElementCollection
'find the screen using the screen title
aeform = aedesktop.FindFirst(TreeScope.Children, New PropertyCondition _
(AutomationElement.NameProperty, "Single Stock View"))
'find all the child controls (this brings back all controls including the toolstrip)
aebuttons = aeform.FindAll(TreeScope.Children, New PropertyCondition _(AutomationElement.IsControlElementProperty, True))
'create an automationelement to store the button and get information out of it
Dim a As AutomationElement
'each button, in the collection, has an index (incidentally the index number corresponds with the order in which the window loads each of the elements into the window), in this case the toolstrip is index 1 as it's in the header of the screen
a = aebuttons.Item(1)
'get the child elements of the toolstrip element (something interesting is that in this case there were 19 elements but when you use findwindowex you only get back 4)
aebuttons = a.FindAll(TreeScope.Children, New PropertyCondition(AutomationElement.IsControlElementProperty, True))
'again use the index of the button to pull back the element information
a = aebuttons.Item(11)
'create a stringbuilder to store information about the element
Dim elementInfoCompile = New StringBuilder()
'identify the controlname, which in my case is the tooltip tag of the button (thus solving the problem of how I can find a button with an image instead of text in it)
Dim controlName As String
If (a.Current.Name = "") Then
controlName = "Unnamed control"
Else
controlName = a.Current.Name
End If
'identify the autoidname - which in all cases seemed to be null - I've no idea why but this didn't matter anyway
Dim autoIdName As String
If (a.Current.AutomationId = "") Then
autoIdName = "No AutomationID"
Else
autoIdName = a.Current.AutomationId
End If
'invoke a click of the button
InvokeControl(a)
End Sub 'FindTreeViewDescendants
'the rest is self-explanatory....
Private Sub InvokeControl(ByVal targetControl As AutomationElement)
Dim invokePattern As InvokePattern = Nothing
Try
invokePattern = _
DirectCast(targetControl.GetCurrentPattern(invokePattern.Pattern), _
InvokePattern)
Catch e As ElementNotEnabledException
' Object is not enabled.
Return
Catch e As InvalidOperationException
' Object doesn't support the InvokePattern control pattern
Return
End Try
invokePattern.Invoke()
End Sub 'InvokeControl
End Class