Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 3866)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#2243 Rejected #Include <%Environment variable path%\Script.au3> wretched
Description

That would be awesome if AutoIt could include files that have an environment variable path.

eg.

#include <%Environmentvariablepath%\Script.au3>

This would make it less tedious to update and maintain that registry key.

#371 Fixed _GDIPlus_Startup() returns wrong boolean value Gary wraithdu
Description

The GdiplusStartup() function returns 0 on success, so the last line of _GDIPlus_Startup() should be

Return $aResult[0] == 0
#475 Fixed StringSplit() does not honor flag 2 when using "" (empty) as delim Valik wraithdu
Description

StringSplit() is returning the array count in $array[0] when the delimiter is "" (blank), even though flag = 2 is set. Ex -

#include <Array.au3>

$string = "thequickbrownfox"
$array = StringSplit($string, "")
_ArrayDisplay($array)
$array = StringSplit($string, "", 2)
_ArrayDisplay($array)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.