I am trying to scrape text from a toolstrip in c# , I can enumerate all windows on the form no problem and get their text; but I can't get the text back from the toolstrip.
Also when I use a spy tool (spy++ or UiExplorer) it shows me that the toolstriplabel has the same handle as the toolstrip that it sits on. Hence recursively running EnumChildWindow s on the toolstrip windows handler yields no results.
Does anyone know...