kn007 发表于 2009-7-8 17:00:20

好想有点感觉了,去改改

kn007 发表于 2009-7-8 17:08:30

OK,经过修改搞定了,我在测试下

pcbar 发表于 2009-7-8 17:27:03

为简洁计,用list控件,不知可否
#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

大绯狼 发表于 2009-7-8 17:38:52

为简洁计,用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

大师出手果然不同凡响。。。。学习了

kn007 发表于 2009-7-8 21:43:32

十分感谢,觉得挺NB的,就是不知道#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6是什么意思

ghostystep 发表于 2009-7-8 21:50:54

可以用一个edit控件,然后有信息就update这个edit控件就可以了。

好多autoit本来的例子里面都有的,memo_write可以很简单update edit控件的
页: 1 [2]
查看完整版本: 我想显示某个目录中所有 bar文件 的文件名(可以带后缀bar)