#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <Constants.au3>
_Main()
Func _Main()
Local $hListBox
; Create GUI
GUICreate("List Box Dir", 400, 296)
$hListBox = GUICtrlCreateList("", 2, 2, 200, 200)
GUISetState()
; Add files
_GUICtrlListBox_BeginUpdate($hListBox)
_GUICtrlListBox_Dir($hListBox, @WindowsDir & "\*.exe")
_GUICtrlListBox_EndUpdate($hListBox)
; Loop until user exits
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main 为简洁计,用list控件,不知可否
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include
#include
#include
_Main()
Func _Main()
Local $hListBox
; Create GUI
GUIC ...
pcbar 发表于 2009-7-8 17:27 http://autoitx.com/images/common/back.gif
大师出手果然不同凡响。。。。学习了 十分感谢,觉得挺NB的,就是不知道#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6是什么意思 可以用一个edit控件,然后有信息就update这个edit控件就可以了。
好多autoit本来的例子里面都有的,memo_write可以很简单update edit控件的
页:
1
[2]