Modify

Opened 15 years ago

Closed 15 years ago

#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 Changed 15 years ago by Jpm

  • Milestone set to 3.3.1.2
  • Owner set to Jpm
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed in version: 3.3.1.2

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain Jpm.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.