Jump to content

WindowForm problem


2dkot
 Share

Recommended Posts

Hi,

So, I have standard winXP window of my hard disc, for example, I need to click on "my documents" in menu in right part of window. The problem is that I can't get full information or full list links/buttons in this menu (as far I understand it is made with WindowForm). Do I have any chance to get some information for further clicking on it with AutoIT.

Does somebody have any experience of this situation?

Link to comment
Share on other sites

Hi,

So, I have standard winXP window of my hard disc, for example, I need to click on "my documents" in menu in right part of window. The problem is that I can't get full information or full list links/buttons in this menu (as far I understand it is made with WindowForm). Do I have any chance to get some information for further clicking on it with AutoIT.

Does somebody have any experience of this situation?

You can use Send function , try this :

WinActivate("My documents","");Activate my documents window
  WinWaitActive("My documents","",2)
  Send("{F10}");Highlight first menu of window
  Send("{DOWN 6}");Move on menu until exit
  Send("{ENTER}");Exit window

For go to another menu on right window (for exemple 2nd menu)

WinActivate("My documents","");Activate my documents window
  WinWaitActive("My documents","",2)
  Send("{F10}");Highlight first menu of window
Send("{RIGHT}");Go to second menu
  Send("{DOWN 9}");Move on menu until select all
  Send("{ENTER}");Select all
Edited by FireFox
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...