Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 3927)

Ticket Resolution Summary Owner Reporter
#969 Fixed FileFindNextFile @extended = 0 for folder $Recycle.Bin Jpm wraithdu
Description

Win7 RC1, AutoIt 3.3.1.0

FileFindNextFile returns @extended = 0 (a file) for the hidden, system folder $Recycle.Bin when searching the root of the drive.

Ex. -

$hFind = FileFindFirstFile("C:\*.*")
While 1
	$file = FileFindNextFile($hFind)
	If @error Then ExitLoop

	ConsoleWrite(@extended & "  :  " & FileGetAttrib("C:\" & $file) & "  :  " & $file & @CRLF)
WEnd
FileClose($hFind)
#1026 Fixed _Gdiplus_BitmapCreate* functions document wrong resource disposal function Valik wraithdu
Description

With the exception of _GDIPlus_BitmapCreateHBITMAPFromBitmap(), all the _Gdiplus_BitmapCreate* functions document that _WinAPI_DeleteObject() should be used to free the resource. Judging from the help examples and testing, the correct function would either be _Gdiplus_BitmapDispose() or _Gdiplus_ImageDispose(). _WinAPI_DeleteObject returns failure (false) in testing.

#1027 Fixed SS_BITMAP Constant Value is Wrong Valik wraithdu
Description

The value of $SS_BITMAP in StaticConstants.au3 is wrong. Currently it is 15, and it should be 14 (0xE).

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.