Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (100 - 102 of 3883)

Ticket Resolution Summary Owner Reporter
#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

#3864 Fixed StringRegExp - AutoIt3.exe ended.rc:-1073741571 Jpm mLipok
Description

This code

_Example()

Func _Example()
        Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit(
                        '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$'

        Local $sString = 'xxxxxxxxxx'
        For $iCounter = 1 To 11
                ConsoleWrite("- step #" & $iCounter & ' StringLen= ' & StringLen($sString) & @CRLF)
                StringRegExp($sString, $s_RegExp, 0)
                $sString &= $sString
        Next
EndFunc   ;==>_Example3

ends with

- step #1 StringLen= 10
- step #2 StringLen= 20
- step #3 StringLen= 40
- step #4 StringLen= 80
- step #5 StringLen= 160
- step #6 StringLen= 320
- step #7 StringLen= 640
- step #8 StringLen= 1280
- step #9 StringLen= 2560
- step #10 StringLen= 5120
- step #11 StringLen= 10240
!>19:31:54 AutoIt3.exe ended.rc:-1073741571

I hope someday it will be possible to diagnose and fix it in the future.

#3863 Completed _WinAPI_GetCapture Jon matwachich@…
Description

_WinAPI_SetCapture _WinAPI_ReleaseCapture missing _WinAPI_GetCapture

Note: See TracQuery for help on using queries.