[已解决]怎么激活任务管理进程选项。
本帖最后由 3370225 于 2012-12-31 22:24 编辑请问用脚本调出任务管理器后,怎么让任务管理器进入进程那个窗口选项卡
$iProcessIndex = ControlListView("Windows 任务管理器", "", 1009, "FindItem","NOTEPAD.EXE")
用这个如果不进入进程那选项卡,就找不到了,请问要怎么激活进程那选项卡 回复 1# 3370225
ControlCommand tab相关的那几个
WinActivate("Windows 任务管理器")
Sleep(500)
$i = ControlCommand ( "Windows 任务管理器", "", "SysTabControl321", "CurrentTab", "" )
While $i>1
ControlCommand ( "Windows 任务管理器", "", "SysTabControl321", "TabLeft", "" )
$i -= 1
Sleep(500)
WEnd
While True
;$txt = ControlGetText ("Windows 任务管理器", "", "")
$txt = WinGetText( "Windows 任务管理器", "" )
;ConsoleWrite($txt & @CRLF)
If StringInStr($txt, "结束进程(&E)") Then
ExitLoop
EndIf
ControlCommand ( "Windows 任务管理器", "", "SysTabControl321", "TabRight", "" )
Sleep(500)
WEnd
Sleep(500)
MsgBox(0, "got", $txt)
页:
[1]