Some simple items on ToolStrip not appearing in Object Browser
Hey all, I have a simple toolstrip on a print preview window that I am trying to automate. On the right hand side of the toolstrip are a textbox and buttons to navigate pages of the print job, and those are recognized fine with methods to automate them, but on the left side, I have a 'Close' button, a 'Print' button that is just a printer icon, and a 'Zoom' dropdown that is the type with a checkmark beside the selection. None of these appear at all in Object Browser. Any ideas how I can access them?
They'll be buttons within the toolstrip rather than separate child objects.
Address them in a similar way as you would a dropdown - so by button name (if they have one) or index (less ideal as more breakable).
Personally, I use ToolTip text on my .NET ToolStrips as the buttons are not visibly named on screen and index numbers are not reliable.