Gee Posted October 12, 2008 Posted October 12, 2008 hi, all My Question : WinList() ==> Array[][] How do insert it into GuictrlcreateListView ?
Minikori Posted October 12, 2008 Posted October 12, 2008 hi, all My Question : WinList() ==> Array[][] How do insert it into GuictrlcreateListView ?Use a For...Next. Example: #include <GUIConstantsEx.au3> $Windows = WinList() GUICreate("WinList") $List = GUICtrlCreateListView("Window|Handle", 50, 50, 300, 300) For $x = 1 To $Windows[0][0] GUICtrlCreateListViewItem($Windows[$x][0] & "|" & $Windows[$x][1], $List) Next GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop EndSelect WEnd For those who are asking questions, look in the help file first. I'm tired of people asking stupid questions about how to do things when 10 seconds in the help file could solve their problem.[quote name='JRowe' date='24 January 2010 - 05:58 PM' timestamp='1264381100' post='766337'][quote name='beerman' date='24 January 2010 - 03:28 PM' timestamp='1264372082' post='766300']They already have a punishment system for abuse.[/quote]... and his his name is Valik.[/quote]www.minikori.com
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now