0

I want to be able to find out the tab order of any UI in 3rd party applications. Let's say in my application I have a window handle of a UI of some other application running on my system. I want to know the tab order of that UI in that application.

Example:

I am running Skype on my system. Let's say I have the window handle of the Call button available on Skype interface, and now I want to know what is the tab order of that button.

I am developing my application in C#. Is there any way to programmatically get this sequence number.

Shubham Jain
  • 16,610
  • 15
  • 78
  • 125
ResVic
  • 117
  • 4
  • 11

1 Answers1

0

If you do EnumChildWindows for a particular container window you should get the controls returned in tab order.