Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (151 - 153 of 3933)

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

#3862 No Bug Calling AutoItX.PixelSearch() throws access violation Jon anonymous
Description

Code:

Rectangle r1 = new Rectangle(506, 1387, 560 + 100, 1397 + 100);
Point p = AutoItX.PixelSearch(r1, 0x737D87);
Console.WriteLine(p);
if (!p.IsEmpty)
    AutoItX.MouseMove(p.X, p.Y, 0);

if using x64 it shows the throw on PixelSearch, in x86 instead shows on WriteLine, so that's probably stack corruption?

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