#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
#region ### START Koda GUI section ### Form=C:\1.kxf
$Form1 = GUICreate("Form1", 215, 97, 192, 124)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
$Label1 = GUICtrlCreateLabel(StringRegExpReplace("1234567890qwerttyuioplkjhgfdsazxcvbnm", '(.{1,10})', '$1 '), 16, 12, 68, 53)
GUICtrlSetBkColor(-1, 0xCCCCCC)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
While 1
Sleep(100)
WEnd
Func Form1Close()
Exit
EndFunc ;==>Form1Close