Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (148 - 150 of 3933)

Ticket Resolution Summary Owner Reporter
#3867 Fixed Script Breaking Changes in 'SecurityConstants.au3' Jpm OJBakker
Description

There are 2 undocumented script breaking changes in 'SecurityConstants.au3' The constants $RIGHTS_DELETE and $STANDARD_RIGHTS_DELETE have been changed in version 3.3.16.0. These changes are not in the changelog and should be reported in the Script Breaking Changes UDF part.

{{{#include <SecurityConstants.au3>

; Const in AutoIt3-v3.3.14.5 Local $iBug1 = $RIGHTS_DELETE Local $iBug2 = $SYNCHRONIZE ; Const in AutoIt3-v3.3.16.0 Local $iBug1NewName = $STANDARD_RIGHTS_DELETE Local $iBug2NewName = $STANDARD_RIGHTS_SYNCHRONIZE }}}

#3866 Fixed REGEXPCLASS broken in 3.3.16.0 Jon Jon
Description

Created a memory leak/object error with an optimization in 3.3.16.0

#3865 Fixed Image Control resizing behave as forced $GUI_DOCKWIDTH and $GUI_DOCKHEIGHT Jon anonymous
Description
#include <GUIConstants.au3>
#include <WindowsConstants.au3>

Test()

Func Test()
        GUICreate("My GUI picture", 350, 300, -1, -1, BitOR($WS_CAPTION, $WS_SIZEBOX + $WS_SYSMENU)) ; will create a dialog box that when displayed is centered
        GUICtrlCreatePic('C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif', 10, 10, 330, 280)
        GUICtrlSetResizing(-1, $GUI_DOCKALL)

        GUISetState(@SW_SHOW)

        While 1
                Switch GUIGetMsg()
                        Case $GUI_EVENT_CLOSE, -3
                                ExitLoop
                EndSwitch
        WEnd

EndFunc

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.