Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (286 - 288 of 3927)

Ticket Resolution Summary Owner Reporter
#1023 Fixed Error in document _FileListToArray Jpm anonymous
Description

There's an error in the example of _FileListToArray

#Include <File.au3>
#Include <Array.au3>
$FileList=_FileListToArray(@DesktopDir)
If @Error=1 Then
    MsgBox (0,"","No Files\Folders Found.")
    Exit
EndIf
_ArrayDisplay($FileList,"$FileList")

The @error should be = to 4 not 1

#Include <File.au3>
#Include <Array.au3>
$FileList=_FileListToArray(@DesktopDir)
If @Error=4 or @Error=1 Then
    MsgBox (0,"","No Files\Folders Found.")
    Exit
EndIf
_ArrayDisplay($FileList,"$FileList")
#1024 Fixed GUICtrlSetTip for tabitems sets incorrectly in certain situations Jon Lazycat
Description

For example, we have a tab with three tabitems. Setting single tips to second and following tabitems have strange behaviour.

$Form1 = GUICreate("Form1", 633, 454, 192, 114)
$Tab1 = GUICtrlCreateTab(184, 152, 289, 193)
GUICtrlSetTip(-1, "Tab Tip")
$TabItem1 = GUICtrlCreateTabItem("TabItem 1")
;GUICtrlSetTip(-1, "TabItem 1 Tip")
$TabItem2 = GUICtrlCreateTabItem("TabItem 2")
;GUICtrlSetTip(-1, "TabItem 2 Tip")
$TabItem3 = GUICtrlCreateTabItem("TabItem 3")
GUICtrlSetTip(-1, "TabItem 3 Tip")
GUICtrlCreateTabItem("")
  1. If you set single tip to only first tabitem - all ok, only first tabitem have a tip.
  2. If you set single tip to second or third tabitem, then all previous tabitems have the same tip (this wrong, code above show this).
  3. But if you set first and third tabs, then second tab have not tip, as expected.

So, problem appear only when first tabitem have not tip set.

Also, when single tip is set to any tabitem, global tab tip not showing anymore on other tabs. Maybe this by design, though.

#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.

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