Код:
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 166, 57, 192, 124)
$Input1 = GUICtrlCreateInput("Данные", 16, 16, 137, 21)
GUICtrlSetTip($Input1, "Подсказка для - " & GUICtrlRead($Input1) )
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd