11-30-2011, 07:35 AM
There is no real tab control. The control is a child dialog. Use keyboard or mouse.
Macro Macro1621
Trigger F12
Macro Macro1621
Trigger F12

;; 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)