xunfengcn 发表于 2012-5-20 20:54:51

为啥我测试这段代码提示变量错误了?

Func Example1()
    Local $msg

    GUICreate("My GUI") ; 创建一个居中显示的 GUI 窗口
    GUISetState(@SW_SHOW) ; 显示一个空白的窗口

    ; 运行界面,直到窗口被关闭
    While 1
      $msg = GUIGetMsg()

      If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
    GUIDelete()
EndFunc   ;==>Example1

veket_linux 发表于 2012-5-20 21:03:43

#include <GUIConstantsEx.au3>

xms77 发表于 2012-5-20 21:23:25

回复 1# xunfengcn
#include <GUIConstantsEx.au3>
Example1()
Func Example1()
    Local $msg

    GUICreate("My GUI") ; 创建一个居中显示的 GUI 窗口
    GUISetState(@SW_SHOW) ; 显示一个空白的窗口

    ; 运行界面,直到窗口被关闭
    While 1
      $msg = GUIGetMsg()

      If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
    GUIDelete()
EndFunc   ;==>Example1
页: [1]
查看完整版本: 为啥我测试这段代码提示变量错误了?