Changes between Version 1 and Version 2 of Ticket #3865, comment 2
- Timestamp:
- 03/08/22 15:51:51 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3865, comment 2
v1 v2 32 32 Func Test() 33 33 GUICreate(@AutoItVersion, 350, 300, -1, -1, BitOR($WS_CAPTION, $WS_SIZEBOX + $WS_SYSMENU)) ; will create a dialog box that when displayed is centered 34 ;~ GUICtrlCreateButton( 'text', 10, 10, 330, 280)35 GUICtrlCreatePic( 'z:\AutoItPortable\App\Examples\GUI\logo4.gif', 10, 10, 330, 280)36 ;~ GUICtrlCreatePic( 'C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif', 10, 10, 330, 280)34 ;~ GUICtrlCreateButton("text", 10, 10, 330, 280) 35 GUICtrlCreatePic("z:\AutoItPortable\App\Examples\GUI\logo4.gif", 10, 10, 330, 280) 36 ;~ GUICtrlCreatePic("C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif", 10, 10, 330, 280) 37 37 ;~ GUICtrlSetResizing(-1, $GUI_DOCKALL) 38 38 GUICtrlSetResizing(-1, $GUI_DOCKAUTO) … … 58 58 Func Test() 59 59 GUICreate(@AutoItVersion, 350, 300, -1, -1, BitOR($WS_CAPTION, $WS_SIZEBOX + $WS_SYSMENU)) 60 GUICtrlCreatePic( 'C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif', 10, 10, 330, 280)60 GUICtrlCreatePic("C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif", 10, 10, 330, 280) 61 61 GUICtrlSetResizing(-1, $GUI_DOCKAUTO) 62 62 GUISetState(@SW_SHOW)