Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (280 - 282 of 3893)

Ticket Resolution Summary Owner Reporter
#281 Rejected CLI and help anonymous
Description

Request here for CLI (command line interface)

and need user32.dll and kernel.dll actions listed in help file

#282 Fixed Transparency issue with icon controls on tabs (revisited) Jpm Ultima
Description

This is actually an issue with AutoIt v3.2.12.0 RC4. The problem I'm noticing this time is that icon controls simply don't have transparent backgrounds on tab controls anymore (where as prior to RC4, it was that the transparency stopped working in specific situations as mentioned here). The problem might not be noticable depending on the Windows theme being used, but I tested on XP Luna. The main point is that the icon seems to be inheriting its background color for the transparent sections from the window background color instead of the tab control.

Here's the test script (slightly modified from the linked thread so that moving is optional -- simply there for testing regression again):

Global $winWidth = 256, $winHeight = 256

Global $hGUI = GUICreate(@AutoItVersion, $winWidth, $winHeight, 0)
GUICtrlCreateTab(5, 5, $winWidth - 10, $winHeight - 10)
GUICtrlCreateTabItem("Tab")
GUICtrlCreateIcon("shell32.dll", -5, ($winWidth-128)/2, ($winHeight-128)/2, 128, 128)
GUICtrlCreateTabItem("")

GUISetState()

;performMove()

Do
Until GUIGetMsg() = -3

Func winHMove($iOffset)
    WinMove($hGUI, "", $aiPos[0] + $iOffset, $aiPos[1])
    Sleep(1)
    $aiPos = WinGetPos($hGUI)
EndFunc

Func performMove()
	Global $aiPos = WinGetPos($hGUI)
	Do
		winHMove(-1)
	Until $aiPos[0] <= -$winWidth

	Do
		winHMove(1)
	Until $aiPos[0] >= 0
EndFunc
#283 No Bug Duplicated Windows Messages anonymous
Description

All the windows messages (codes) in the help file are duplicated

Note: See TracQuery for help on using queries.