Modify

Opened 17 years ago

Closed 17 years ago

#982 closed Bug (Duplicate)

Checkbox backcolor in tab

Reported by: anonymous Owned by:
Milestone: Component: AutoIt
Version: 3.3.1.0 Severity: None
Keywords: Cc:

Description (last modified by Valik)

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>

$Form1 = GUICreate("Form1", 500, 300, 192, 50)
$Checkbox0 = GUICtrlCreateCheckbox("work", 130, 24, 185, 65)
$Tab1 = GUICtrlCreateTab(120, 120, 305, 169)
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$TabSheet1 = GUICtrlCreateTabItem("TabSheet1")
$TabSheet2 = GUICtrlCreateTabItem("TabSheet2")
GUICtrlSetState(-1,$GUI_SHOW)
;not work in tab.(backcolor)
$Checkbox1 = GUICtrlCreateCheckbox("not work", 130, 150, 60, 12 )
$Checkbox2 = GUICtrlCreateCheckbox(@AutoItVersion, 130, 176, 60, 12 )
GUICtrlSetBkColor(-1,0xffffff)
GUICtrlCreateTabItem("")
GUISetState(@SW_SHOW)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
	EndSwitch
WEnd

Attachments (0)

Change History (4)

comment:1 by anonymous, 17 years ago

worked in 3.3.1.0

comment:2 by anonymous, 17 years ago

worked in 3.3.0.0. but 3.3.1.0 not work.

comment:3 by MrCreatoR <mscreator@…>, 17 years ago

I thinks it's already has been reported: GUICtrlCreateCheckbox() on tabs.

And fixed :)

comment:4 by Valik, 17 years ago

Description: modified (diff)
Resolution: Duplicate
Status: newclosed

Closing as a duplicate of #975.

Modify Ticket

Action
as closed The ticket will remain with no owner.

Add Comment


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