Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (268 - 270 of 3893)

Ticket Resolution Summary Owner Reporter
#1469 Fixed _GDIPlus_BitmapCloneArea must use _GDIPlus_BitmapDispose to release Jon Beege
Description

Currently the documentation states that the user should use _WinAPI_DeleteObject() to release the bitmap created by _GDIPlus_BitmapCloneArea. This is incorrect. Much like _GDIPlus_BitmapCreateFromFile, _GDIPlus_BitmapCreateFromGraphics, and _GDIPlus_BitmapCreateFromHBITMAP, _GDIPlus_BitmapCloneArea must also use _GDIPlus_BitmapDispose to release.

#1473 Completed Debug.au3, _DebugReportVar(), Line format, Scite support? Jon anonymous
Description

Debug.au3 Line 286

Local $sData = "@@ Debug(" & $ScriptLineNumber & "): " & __Debug_DataType($vVar) & " -> " & $varName

Think that should be ... To make the printed line in scite a active code link. (added space at ") : ")

Local $sData = "@@ Debug(" & $ScriptLineNumber & ") : " & __Debug_DataType($vVar) & " -> " & $varName
#1475 Fixed TrayItemSetState($Value, $Tray_Checked) enables an disabled TrayItem Jon Emiel Wieldraaijer
Description

Hi All,

I've disabled a trayitem and when is give it a command to check the trayitem it's enabled. Is this by Design ! i believe it's a bug

Best regards,

Emiel Wieldraaijer

[AutoIt] #Include <Constants.au3> #include <GUIConstantsEx.au3>

Opt("TrayMenuMode", 1) Opt("TrayOnEventMode", 1)

$GUI = GUICreate("TrayItemSetState", 200, 200) $Button1 = GUICtrlCreateButton ("Check TrayItem", 20, 20, 100, 20) GUISetState ()

$Tray1 = TrayCreateItem("Hello World") TrayItemSetOnEvent(-1, "_Tray1") TrayItemSetState($Tray1, 128)

$Tray2 = TrayCreateItem("Exit") TrayItemSetOnEvent(-1, "_Terminate")

While 1

$msg = GUIGetMsg ()

Switch $msg

Case -3

ExitLoop

Case -50 To 0

ContinueLoop

Case $GUI_EVENT_CLOSE

_Terminate()

Case $Tray2

_Terminate()

Case $Button1

TrayItemSetState($Tray1, $Tray_Checked)

EndSwitch

Wend

Func _Terminate ()

Exit

EndFunc

Func _Tray1 ()

Msgbox (64, "TrayItemOne", "Hello World")

EndFunc AutoIt

Note: See TracQuery for help on using queries.