Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (115 - 117 of 3833)

Ticket Resolution Summary Owner Reporter
#368 Fixed Success of _ArrayToClip is now -1 (used to be 1 and as still documented) Gary John.Rainbow@…
Description

The "Success" return of function _ArrayToClip is now -1 (older production release returned "1" and the current documentation for this function is also "1").

The workaround is either to use the new "Success" value of "-1" (not recommended in case this function is corrected to the documentation) or to test that it is <> 0

For example, Return Flag in the script below shows as "-1" although it was successful (according to the documentation, success = 1)

#include <Array.au3>

Local $avArray = StringSplit("a,b,c,d,e,f,g,h,i", ",")
$iRetCode = _ArrayToClip($avArray, 1)
MsgBox(0, "Return Flag ", "$iRetCode = " & $iRetCode)
MsgBox(0, "_ArrayToClip() Test", ClipGet())
#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
#380 Fixed @OSVersion return WIN_2003 on Windows XP x64 MUI Jon anonymous
Description

The Macro @OSVersion returns a wrong value on Windows XP x64 MUI. It returns "WIN_2003", my script was compiled on a Windows XP x32 german system. The target system, on which the script runs is Windows XP x64 MUI with german language files.

Regards, Tim Meurer

Note: See TracQuery for help on using queries.