;from file name form1.au3 #include #include #include #include #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 888, 583, -1, -1) $Button1 = GUICtrlCreateButton("Button GUI Form2", 240, 52, 205, 102) $Button2 = GUICtrlCreateButton("2", 448, 52, 100, 102) $Button3 = GUICtrlCreateButton("3", 564, 52, 101, 102) $Button4 = GUICtrlCreateButton("4", 668, 52, 101, 102) $Button5 = GUICtrlCreateButton("5", 772, 52, 101, 102) $Button6 = GUICtrlCreateButton("6", 240, 157, 101, 102) $Button7 = GUICtrlCreateButton("7", 344, 157, 101, 102) $Button8 = GUICtrlCreateButton("8", 448, 157, 100, 102) $Button9 = GUICtrlCreateButton("9", 564, 157, 101, 102) $Button10 = GUICtrlCreateButton("10", 668, 157, 101, 102) $Button11 = GUICtrlCreateButton("11", 772, 157, 101, 102) $Button12 = GUICtrlCreateButton("12", 240, 261, 205, 102) $Button13 = GUICtrlCreateButton("13", 448, 261, 100, 102) $Button14 = GUICtrlCreateButton("14", 564, 261, 101, 102) $Button15 = GUICtrlCreateButton("15", 668, 261, 205, 102) $Button16 = GUICtrlCreateButton("16", 240, 365, 205, 102) $Button17 = GUICtrlCreateButton("17", 448, 365, 100, 102) $Button18 = GUICtrlCreateButton("18", 564, 365, 101, 102) $Button19 = GUICtrlCreateButton("19", 668, 365, 101, 102) $Button20 = GUICtrlCreateButton("20", 772, 365, 101, 102) GUISetState(@SW_SHOW) $Pic1 = GUICtrlCreatePic("form1.bmp", -0, -0,888, 583) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd