#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 266, 73, 301, 199)
$Input1 = GUICtrlCreateInput("Input1", 16, 8, 233, 21)
$Button1 = GUICtrlCreateButton("Прочитать", 16, 40, 75, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Записать", 176, 40, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd