Hi,
I have a field in an application that I can't tab or shift+tab to get there. How can I navigate to that field using Sendkey?
Thanks,
PhiL
Printable View
Hi,
I have a field in an application that I can't tab or shift+tab to get there. How can I navigate to that field using Sendkey?
Thanks,
PhiL
SendKeys "{TAB}"
SendKeys "{TAB}"
"I have a field in an application that I can't tab or shift+tab to get there"
Quote:
Originally Posted by Pasvorto
Maybe you can use the FindWindow and FindWindowEx APIs to get the handle of the field you want to set the focus to and then use the SetFocus API to set it?
you can't...Quote:
Originally Posted by Iat
you gotta use APIs as manavo suggests...
Quote:
Originally Posted by manavo11
Thank you all for the tips. Now I just have to find out more on how to use the above API's to do the job.
You're welcome. If you have problems, post back :)Quote:
Originally Posted by Iat