回复 4# xsjtxy
奇怪,我现在试了又可以了#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 613, 435, 192, 132)
$Button1 = GUICtrlCreateButton("Button1", 224, 320, 161, 49)
$Input1 = GUICtrlCreateInput("Input1", 16, 24, 209, 24)
$Input2 = GUICtrlCreateInput("Input2", 104, 96, 225, 24)
$Input3 = GUICtrlCreateInput("Input3", 200, 168, 241, 24)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|