Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (430 - 432 of 3931)

Ticket Resolution Summary Owner Reporter
#1363 Fixed FileSetPos() error xrewndel
Description

FileSetPos($hFile, $num, $FILE_CURRENT) works incorrectly. Result is similar to FileSetPos(…, …, $FILE_END) It calculating position relative to end instead of relative to current position. Currently it works using FileSetPos($hFile, FileGetPos($hFile) + $num, $FILE_BEGIN).

#1367 Fixed GUIDelete() crashes program when called from WM_* message handler Valik isolation@…
Description

GUIDelete() crashes the autoit compiled executable and also the interpreter when called from a WM_ANYMESSAGE(GUIRegisterMessage)

look at the attached script for more details, it explains itself.

#1370 Fixed StringInStr() Valik anonymous
Description
;; StringInStr ( "string", "substring" [, casesense [, occurrence [, start [, count]]]] )
;; @Error 0 - Normal operation, 1 - Invalid "start" or "occurence" parameter given.

;~ $result = StringInStr($string, $substr, $case, 1, 1000) ;; --- 0, [0.0] ... (Invalid "start?, no @error.)
;~ $result = StringInStr($string, $substr, $case, 1, 1000000) ;; --- 0, [0.0] ... (Invalid "start?, no @error.)

$result = StringInStr($string, $substr, $case, -1, 1000000) ;; --- ... (autoit crash)
;~ $result = StringInStr($string, $substr, $case, -1, 1000) ;; --- 123, [0.0] ... (result not zero)(Invalid "start?, no @error.)

Local $err = @error, $ext = @extended
ConsoleWrite('$result = ' & $result & ', [' & $err & ',' & $ext & ']' & @CRLF)

;; XP.Pro.Sp3, Au3.3.3.2.0.
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.