Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I select a tab then a text box on that Tab ?
#2
There is no real tab control. The control is a child dialog. Use keyboard or mouse.

Macro Macro1621
Trigger F12     Help - how to add the trigger to the macro
Code:
Copy      Help
;; Open Project Settings Menu Dialog
men(34048 win("Microsoft Visual C++"))
int w=wait(5 win("Project Settings" "" "" 0x808))
;;Select Link Tab
;press Ctrl+Tab until Link tab visible
rep 15
,int ppLink=child("Link" "#32770" w)
,if(IsWindowVisible(ppLink)) break
,key CT
;;Insert new Path in "Output file name:" text box
int c=id(19158 ppLink)
_s="c:\PATH"; _s.setwintext(c)


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)