#include <GUIConstantsEx.au3>
#include <EditConstants.au3>
$hGUI = GUICreate("Test Script", 300, 200)
$nButton = GUICtrlCreateInput("Info", 20, 40, 60, 20, BitOR($GUI_SS_DEFAULT_INPUT, $ES_READONLY))
GUISetState(@SW_SHOW, $hGUI)
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd