#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
; Создание таблицы
$Form1 = GUICreate("Вынос", 615, 508, 192, 124)
; Ячейки первой группы
$Input1 = GUICtrlCreateInput("", 240, 56, 193, 21)
$Input2 = GUICtrlCreateInput("", 240, 88, 193, 21)
$Input3 = GUICtrlCreateInput("", 240, 120, 193, 21)
$Input4 = GUICtrlCreateInput("", 240, 152, 193, 21)
$Input5 = GUICtrlCreateInput("", 240, 184, 193, 21)
; Описание ячеек первой группы
$Label1 = GUICtrlCreateLabel("По адресу", 168, 56, 68, 17)
$Label2 = GUICtrlCreateLabel("Куда направляется", 168, 88, 68, 17)
$Label3 = GUICtrlCreateLabel("кто вносит", 168, 120, 68, 17)
$Label4 = GUICtrlCreateLabel("Подразделение", 168, 152, 68, 17)
$Label5 = GUICtrlCreateLabel("С целью", 168, 184, 68, 17)
; Ячейки второй группы
$Input6 = GUICtrlCreateInput("", 192, 288, 153, 21)
$Input7 = GUICtrlCreateInput("", 192, 320, 153, 21)
$Input8 = GUICtrlCreateInput("", 192, 352, 153, 21)
; Описание ячеек второй группы
$Label6 = GUICtrlCreateLabel("1", 168, 288, 28, 17)
$Label7 = GUICtrlCreateLabel("2", 168, 320, 28, 17)
$Label8 = GUICtrlCreateLabel("3", 168, 352, 28, 17)
$Label9 = GUICtrlCreateLabel("Наименование", 224, 264, 100, 17)
; Маленькии ячейки второй группы
$Input9 = GUICtrlCreateInput("", 360, 288, 33, 21)
$Input10 = GUICtrlCreateInput("", 360, 320, 33, 21)
$Input11 = GUICtrlCreateInput("", 360, 352, 33, 21)
; Описание маленьких ячеек второй группы
$Label10 = GUICtrlCreateLabel("Штук", 360, 264, 42, 17)
; Кнопка
$Button1 = GUICtrlCreateButton("Нажми на кнопку получишь результат", 184, 432, 243, 25)
; Контур первой группы
$Group1 = GUICtrlCreateGroup("Куда, чего и зачем", 136, 40, 345, 193)
GUICtrlCreateGroup("", -99, -99, 1, 1)
; Контур второй группы
$Group2 = GUICtrlCreateGroup("Что тащим?", 136, 248, 345, 153)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd