Here is a code I Made, To show how does my window looks like... #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Global $Form1 = GUICreate("Auto 8,9", 301, 101, 313, 303) GUISetBkColor(0xFFFF00) Global $Button1 = GUICtrlCreateButton("START", 24, 24, 113, 41) GUICtrlSetBkColor($Button1, 0x00FF00) Global $Button2 = GUICtrlCreateButton("STOP", 184, 24, 113, 41) GUICtrlSetBkColor($Button2, 0xFF0000) Global $Pic1 = GUICtrlCreatePic("C:UsersAdminDocumentsautosave_0069_640x360.bmp", 0, 0, 300, 100) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd But still I do not know how to make main START and STOP part