Custom Query (3931 matches)
Results (430 - 432 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1363 | Fixed | FileSetPos() error | ||
| 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 | ||
| 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() | ||
| 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.
|
|||
Note:
See TracQuery
for help on using queries.
