Changes between Version 1 and Version 2 of Ticket #3865, comment 2


Ignore:
Timestamp:
03/08/22 15:51:51 (2 years ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3865, comment 2

    v1 v2  
    3232Func Test()
    3333        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)
    3737;~      GUICtrlSetResizing(-1, $GUI_DOCKALL)
    3838        GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
     
    5858Func Test()
    5959        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)
    6161        GUICtrlSetResizing(-1, $GUI_DOCKAUTO)
    6262        GUISetState(@SW_SHOW)