本帖最后由 alice148 于 2010-3-9 20:09 编辑
问题:
点击[浏览]选取了一个文件,显示在第一行。但是选取第二个文件就覆盖了第一行了。如何让它第二个文件显示在第二行,第二个显示在第三行.........#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("窗体1", 413, 299, 302, 218)
$Edit1 = GUICtrlCreateEdit("", 48, 40, 185, 89)
$Button1 = GUICtrlCreateButton("浏览", 240, 40, 39, 27, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
a1()
EndSwitch
WEnd
Func a1()
$var = FileOpenDialog("选择启动的程序", "", "所有文件(*.*)",GUICtrlRead($Edit1))
If FileExists($var)=0 Then
Else
GUICtrlSetData($Edit1,$var)
EndIf
EndFunc
|