컴퓨터잡담

AHK_L) SysListView321 컨트롤 내용 추출하기

by 디케 posted Oct 07, 2011
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

 AHK_L) SysListView321 컨트롤 내용 추출하기

A=로컬 디스크 (D:) ahk_class ExploreWClass


WinActivate, %A%

WinWaitActive, %A%


;ControlGet, List, List, Selected, SysListView321, 로컬 디스크 (D:) ahk_class ExploreWClass


sleep, 1000


ControlGet, OutputVar, List, , SysListView321, A

msgbox %outputvar%


ControlGet, count, List,count , SysListView321, A


msgbox lines=%count%


loop, %count%

{

  Control, Choose, %a_index%, SysListView321, A

  tooltip, line=%a_index%

  sleep, 1000

}



Articles

26 27 28 29 30