Custom Query
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
Wend Func _Terminate ()
EndFunc Func _Tray1 ()
EndFunc AutoIt |
|||
