GuiCtrlCreateLabel("Text", Left, Top)Text = النصLeft = البعد عن يسار النافذةTop = البعد عن أعلى النافذة
#include <StaticConstants.au3>
GuiCtrlCreateInput("Text", Left, Top, Width, Height)Text =الإفتراضي النصLeft = البعد عن يسار النافذةTop = البعد عن أعلى النافذةWidth = العرضHeight = الإرتفاع
#include <EditConstants.au3>
GuiCtrlCreateEdit("Text", Left, Top, Width, Height)Text =الإفتراضي النصLeft = البعد عن يسار النافذةTop = البعد عن أعلى النافذةWidth = العرضHeight = الإرتفاع
#include <EditConstants.au3>#include <GUIConstantsEx.au3>#include <StaticConstants.au3>#include <WindowsConstants.au3>GUICreate("My Program", 220, 291, -1, -1)$Label1 = GUICtrlCreateLabel("This is a text label", 65, 24)$Input1 = GUICtrlCreateInput("This is Input Box", 16, 72, 185, 21)$Edit1 = GUICtrlCreateEdit("This is Edit Box ...", 16, 112, 185, 161)GUISetState(@SW_SHOW)While 1$nMsg = GUIGetMsg()Switch $nMsg Case $GUI_EVENT_CLOSE ExitEndSwitchWend