SlimShady 1 Posted September 22, 2004 I would like to have tabs in a tab. How do I do that? I tried several things and I hoped this would work. Can you help me? $main_tab_1 = GUISetControl("tab", "Tab 1", 10, 10, 350, 300) $tab_1 = GUISetControl("tabitem", "Info 1", 0, 0, 0, 0) ;content $tab_2 = GUISetControl("tabitem", "Info 2", 0, 0, 0, 0) $sub_tab_1 = GUISetControl("tab", "Tab 2", 20, 20, 200, 200) $day_0 = GUISetControl("tabitem", "Today", 0, 0, 0, 0) $day_1 = GUISetControl("tabitem", "Tomorrow", 0, 0, 0, 0) $day_2 = GUISetControl("tabitem", "Day After", 0, 0, 0, 0) $sub_tab_close = GUISetControl("tabitem", "", -50, -50, 1, 1) ;close tab $search_tab = GUISetControl("tabitem", "Search", 0, 0, 0, 0) $main_tab_close = GUISetControl("tabitem", "", -99, -99, 1, 1) ;close tab Share this post Link to post Share on other sites
jpm 98 Posted September 22, 2004 as stated in the doc only one tab is allowed by GUI Share this post Link to post Share on other sites
SlimShady 1 Posted September 22, 2004 as stated in the doc only one tab is allowed by GUI <{POST_SNAPBACK}>I'm curious; Can you tell me why? Share this post Link to post Share on other sites
CyberSlug 6 Posted September 22, 2004 Depending on the implementation, support for nested tabs could be really tricky...a possible psuedo-tab implementation can be found here... Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites