Custom Query (3921 matches)
Results (379 - 381 of 3921)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2562 | Fixed | StringRegExp & Null character | ||
| Description |
I've noticed that even the StringRegExp (StringRegExpReplace is Ok, even StringSplit is Ok that return array) that does not seem OK local $b, $a = StringRegExp("aaa" & chr(0) & "bbbccc", 'aaa\x00bbb', 1) $b = @extended ConsoleWrite("@extended - " & $b & @LF) ConsoleWrite("StringLen - " & StringLen($a[0]) & @LF) exit ;~ >Running:(3.3.9.23):C:\Program Files (x86)\AutoIt3\Beta\autoit3.exe "C:\Users\DXRW4E\Desktop\New AutoIt v3 Script.au3" ;~ --> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop ;~ @extended - 8 ;~ StringLen - 3 ;~ +>08:31:35 AutoIt3.exe ended.rc:0 ;~ >Exit code: 0 Time: 0.423 |
|||
| #2566 | Fixed | "global" cursor in GUISetCursor fails. | ||
| Description |
Setting the override flag in GUISetCursor() does not work in latest beta. When hovering another control autoit defaults to the cursor id of that control. Example script: #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> $Form1 = GUICreate("Form1", 615, 438, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 64, 56, 89, 33) $Button2 = GUICtrlCreateButton("Button2", 272, 56, 89, 33) GUISetState(@SW_SHOW) GUISetCursor(15, 1, $Form1) While 1
WEnd |
|||
| #2568 | Fixed | StringStripWS does not strip Chr(0) as Help file states | ||
| Description |
Problem illustrated here: http://www.autoitscript.com/forum/topic/157213-sitringstripws-versus-chr0/ Ticket opened as requested by Jon. M23 |
|||
