#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$fr_main = GUICreate("test", 122, 25, 192, 124, -1, $WS_EX_WINDOWEDGE)
$in_msg = GUICtrlCreateInput("", 4, 4, 113, 17, $ES_CENTER)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd