Modify

Opened 17 years ago

Closed 17 years ago

#1087 closed Bug (Fixed)

CheckBox on TabItem, CheckBox text.

Reported by: anonymous Owned by: J-Paul Mesnage
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 J-Paul Mesnage, 17 years ago

Milestone: 3.3.1.2
Owner: set to J-Paul Mesnage
Resolution: Fixed
Status: newclosed

Fixed in version: 3.3.1.2

Modify Ticket

Action
as closed The owner will remain J-Paul Mesnage.

Add Comment


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