;from file name form1.au3 #include #include #include #include #Region ### START Koda GUI section ### Form= $Form2 = GUICreate("Form2", 392, 623, -1, -1) $Button1 = GUICtrlCreateButton("Button GUI Form1", 56, 36, 325, 165) $Button2 = GUICtrlCreateButton("Button2", 72, 208, 145, 73) $Button3 = GUICtrlCreateButton("Button3", 224, 208, 145, 73) $Button4 = GUICtrlCreateButton("Button4", 72, 320, 145, 73) $Button5 = GUICtrlCreateButton("Button5", 224, 320, 145, 73) $Button6 = GUICtrlCreateButton("Button6", 72, 424, 145, 73) $Button7 = GUICtrlCreateButton("Button7", 224, 424, 145, 73) GUISetState(@SW_SHOW) $Pic1 = GUICtrlCreatePic("form2.bmp", 0, 0, 392, 623) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd