Trong Posted March 18, 2017 Share Posted March 18, 2017 Like this: GUICtrlCreateTab on Top eg: expandcollapse popup#include <GUIConstantsEx.au3> Example() Func Example() GUICreate("My GUI Tab") ; will create a dialog box that when displayed is centered GUISetBkColor(0x00E0FFFF) GUISetFont(9, 300) GUICtrlCreateTab(10, 10, 200, 100) GUICtrlCreateTabItem("tab0") GUICtrlCreateLabel("label0", 30, 80, 50, 20) GUICtrlCreateButton("OK0", 20, 50, 50, 20) GUICtrlCreateInput("default", 80, 50, 70, 20) GUICtrlCreateTabItem("tab----1") GUICtrlCreateLabel("label1", 30, 80, 50, 20) GUICtrlCreateCombo("", 20, 50, 60, 120) GUICtrlSetData(-1, "Trids|CyberSlug|Larry|Jon|Tylo|guinness", "Jon") ; default Jon GUICtrlCreateButton("OK1", 80, 50, 50, 20) GUICtrlCreateTabItem("tab2") GUICtrlSetState(-1, $GUI_SHOW) ; will be display first GUICtrlCreateLabel("label2", 30, 80, 50, 20) GUICtrlCreateButton("OK2", 140, 50, 50) GUICtrlCreateTabItem("") ; end tabitem definition GUICtrlCreateLabel("label3", 20, 130, 50, 20) GUISetState(@SW_SHOW) Local $idMsg ; Loop until the user exits. While 1 $idMsg = GUIGetMsg() If $idMsg = $GUI_EVENT_CLOSE Then ExitLoop WEnd EndFunc ;==>Example Regards, Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 18, 2017 Moderators Share Posted March 18, 2017 You, Using my GUIExtender UDF allows you to do something like this quite easily: expandcollapse popup#include <GUIConstantsEx.au3> #include "GUIExtender.au3" Global $aLabel[6], $aColour[] = [0, 0xFF0000, 0x00FF00, 0xAAAAFF, 0xFFFF00, 0x00FFFF] $hGUI = GUICreate("Test", 2600, 500, 100, 100) For $i = 1 To 5 $aLabel[$i] = GUICtrlCreateLabel("Tab " & $i, 0, ($i * 100) - 100, 100, 100) GUICtrlSetBkColor(-1, $aColour[$i]) GUICtrlSetResizing(-1, $GUI_DOCKSIZE) Next _GUIExtender_Init($hGUI, 1) For $i = 1 To 5 $iSection = _GUIExtender_Section_Create($hGUI, (500 * $i) - 400, 500) GUICtrlCreateLabel("This is screen " & $iSection, (500 * $i) - 400, (100 * $i) - 100, 500, 100) GUICtrlSetBkColor(-1, $aColour[$i]) _GUIExtender_Section_Activate($hGUI, $iSection) Next _GUIExtender_Section_Create($hGUI, -99) $iCurrSection = 1 For $i = 2 To 5 _GUIExtender_Section_Action($hGUI, $i, 0) Next GUISetState() While 1 $imsg = GUIGetMsg() Switch $iMsg Case $GUI_EVENT_CLOSE Exit Case Else For $i = 1 To 5 If $iMsg = $aLabel[$i] And $i <> $iCurrSection Then _GUIExtender_Section_Action($hGUI, $iCurrSection, 0) _GUIExtender_Section_Action($hGUI, $i, 1) $iCurrSection = $i ExitLoop EndIf Next EndSwitch _GUIExtender_EventMonitor($hGUI, $iMsg) WEnd The UDF link is in my sig. M23 Trong 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
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