|
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = Guicreate("搜索", 400, 70, -1, -1)
$Button1 = GuiCtrlCreateButton("請輸入路徑進行查找", 20, 40, 120, 20)
$Button2 = GuiCtrlCreateButton("清除記錄", 320, 40, 60, 20)
$Input1 = GUICtrlCreateInput("", 10, 10, 380, 20)
GuiSetState(@SW_SHOW)
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$var = FileExists("")
If $var Then; 也有可能的話: 如 @error = 則 ... ;單一條件分支陳述式。
Msgbox(0,"提示","服務器上有此文檔" & $var,3) ;顯示一個簡單的對話框 (可設定逾時屬性) 。
Else ;多重條件分支陳述式。
Msgbox(0,"提示","服務器上沒有此文檔" & @error,3) ;顯示一個簡單的對話框 (可設定逾時屬性) 。
EndIf ;多重條件分支陳述式。
Case $Button2
EndSwitch
Wend |
|