Modify

#1087 closed Bug (Fixed)

CheckBox on TabItem, CheckBox text.

Reported by: anonymous Owned by: Jpm
Milestone: 3.3.1.2 Component: AutoIt
Version: 3.3.1.1 Severity: None
Keywords: CheckBox TabItem Cc:

Description

Moving the mouse over a CheckBox-control thats inside a Tab-Control,
makes the text of that CheckBox looking bolder.
Environment = 3.3.1.1 under WIN_XP/Service Pack 3 X86
(using windows theme classic)

#include <GUIConstantsEx.au3>
Opt("GUIOnEventMode", 1)
gui()
wait()
Func gui()
	GUICreate("guiWindow")
	GUISetOnEvent($GUI_EVENT_CLOSE, "Close")
	GUICtrlCreateTab(0, 0)
	GUICtrlCreateTabItem("Tab1")
	GUICtrlCreateCheckbox("Checkbox1...", 10, 50, 80, 20)
	GUICtrlCreateTabItem("Tab2")
	GUICtrlCreateTabItem("")
	GUICtrlCreateCheckbox("Checkbox0...", 10, 70, 80, 20)
	GUISetState(@SW_SHOW)
EndFunc
Func Wait()
	While 1
		Sleep(500)
	WEnd
EndFunc
Func Close()
	Exit
EndFunc

Attachments (0)

Change History (1)

comment:1 by Jpm, on Jul 28, 2009 at 9:56:02 AM

Milestone: 3.3.1.2
Owner: set to Jpm
Resolution: Fixed
Status: newclosed

Fixed in version: 3.3.1.2

Modify Ticket

Action
as closed The owner will remain Jpm.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.