#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
_Main()
Func _Main()
Local $nMsg
$Form1_1 = GUICreate("Form1", 561, 142, -1, -1, $WS_POPUP)
GUISetBkColor(0x008000)
$Label1 = GUICtrlCreateLabel("緑緣網吧歡迎您", 64, 8, 427, 68)
GUICtrlSetFont(-1, 48, 800, 0, "仿宋_GB2312")
GUICtrlSetColor(-1, 0x000080)
$Label2 = GUICtrlCreateLabel("技ポ支持:497989234(慕傛) ", 280, 112, 278, 23)
GUICtrlSetFont(-1, 14, 800, 0, "楷体_GB2312")
GUICtrlSetColor(-1, 0x000080)
GUISetState()
Sleep(2*1000)
GUIDelete($Form1_1)
$Form1 = GUICreate("Form1", 633, 446, 192, 124)
GUISetState()
Sleep(2*1000)
While 1
$nmsg=GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
EndFunc
|