﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
975	GUICtrlCreateCheckbox() on tabs.	GEOSoft	Valik	"The code is pretty self explanatory.  Black areas (desktop color) where the checkbox text should be.  If You comment out the Tab items then it changes to gray and if you further comment out the tab itself everything is fine.

----

{{{
$Frm_Main = GUICreate(""Test Form"", 400, 300)
$Tab = GUICtrlCreateTab( 0, 0, 400, 300)
$hTab_1 = GUICtrlCreateTabItem(""Tab 1"")
$hCheck = GUICtrlCreateCheckBox(""Demonstartion"", 10, 30, 150, 20)
GUICtrlCreateTabItem("""")
GUISetState()
While 1
   $Msg = GUIGetMsg()
   Switch $Msg
      Case -3
         Exit
   EndSwitch
WEnd
}}}
Also if you comment out the tab items (leave the tab in) and set the GUI background color to 0xFFFFFF then it doesn't show the grey area."	Bug	closed	3.3.1.6	AutoIt	3.3.1.0	Blocking	Fixed	Checkbox, Tab, color	
