nhatlinhvietnam Posted March 20, 2009 Posted March 20, 2009 (edited) Sorry!But i don't know how to create a tab in tab.Example,if i create 1 tab named maintab and 3 tab item.In first tabitem,i create a new tab named extab and extabitem of it.But extabitem show in the maintab.Please help me!I have used Koda Gui but it can't Sorry for my bad english Edited March 20, 2009 by nhatlinhvietnam
DaRam Posted March 20, 2009 Posted March 20, 2009 Post your code or just the part involving tab creation for better assistance.Sorry!But i don't know how to create a tab in tab.Example,if i create 1 tab named maintab and 3 tab item.In first tabitem,i create a new tab named extab and extabitem of it.But extabitem show in the maintab.Please help me!I have used Koda Gui but it can'tSorry for my bad english
nhatlinhvietnam Posted March 20, 2009 Author Posted March 20, 2009 it is here: Guicreate("Ex",600,450) $maintab = GUICtrlCreateTab(5, 70, 590, 375) GUICtrlCreateTabItem(" 1 Tabitem ") $extab = guiCtrlCreateTab(10,120,570,300) GuiCtrlcreateTabitem(" EXitem ") GUICtrlCreateTabItem(" 2 Tabitem ") GUICtrlCreateTabItem(" 3 Tabitem ") GuisetState(@sw_show) While 1 $click = GUIGetMsg() Select case $click = $GUI_EVENT_CLOSE Msgbox(0,"Thoat","Ban da nhan thoat") ExitLoop EndSelect WEnd EndFunc
DaRam Posted March 20, 2009 Posted March 20, 2009 ONLY one Tab control can be created by a window. But a script can create several windows (Child Windows) having a tab in.You might find a solution here http://www.autoitscript.com/forum/index.php?showtopic=44083
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now