Hi all,
new question: Why, with this code, the tab is not displayed when there is a group arroud it? a bug?
is there a way to display it?
Is it possible to set the inside of the tab at the same color that the rest of form? (not white).
Thx
#include <GUIConstants.au3>
; == GUI generated with Koda ==
$Form1 = GUICreate("AForm1", 622, 441, 192, 125)
$Group1 = GUICtrlCreateGroup("AGroup1", 72, 72, 449, 289)
$Tab1 = GUICtrlCreateTab(136, 144, 313, 169)
$TabSheet1 = GUICtrlCreateTabItem("TabSheet1")
$TabSheet2 = GUICtrlCreateTabItem("TabSheet2")
$TabSheet3 = GUICtrlCreateTabItem("TabSheet3")
GUICtrlCreateTabItem("")
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
While 1
$msg = GuiGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case Else
;;;;;;;
EndSelect
WEnd
Exit