Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (193 - 195 of 3933)

Ticket Resolution Summary Owner Reporter
#3816 Completed Improvement of the example in the help of the function _WinAPI_ReadDirectoryChanges Jpm domenic.laritz@…
Description

The example in the help for the _WinAPI_ReadDirectoryChanges function contains the following line of code:

DirRemove($g_sPath, 1)

Since all "magic" numbers should be avoided if possible, the use of "$DIR_REMOVE" would be better than "1". But this then implies the inclusion of the file AutoItConstants.au3 (see also the documentation of the function DirRemove).

#3815 No Bug Remark in help regarding return value of _ArrayDelete is wrong anonymous
Description

The "Remarks" section of the _ArrayDelete function contains the following text regarding the return value (see https://www.autoitscript.com/autoit3/docs/libfunctions/_ArrayDelete.htm): "[...] but the return value of the function (if successful) gives the new highest row index of the array." But this statement is not true. The return value is not the new highest row index, but the total number of rows. See also the following example.

#include <Array.au3>

Local $aArray[5] = [0, 1, 2, 3, 4]

ConsoleWrite("Number of array elements before deletion: " & UBound($aArray) & @CRLF)
ConsoleWrite("Return value of _ArrayDelete: " & _ArrayDelete($aArray, 2) & @CRLF)
ConsoleWrite("Number of array elements after deletion: " & UBound($aArray) & @CRLF)
#3814 Fixed _WinAPI_CreateFileMapping: $PAGE_xxx constants not defined Jpm matwachich@…
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.