XanzyX Posted November 3, 2017 Share Posted November 3, 2017 Hey guys: I'm a newbie looking for a solution for my problem. Thank you in advance. I wrote a GUI app (See below) and in the "Input" tab I have a button to select a file. Once that file is selected, I want to display the path on the "Input" tab only. I used GUICtrlCreateLabel() and that path is repeated on all the tabs. What am I doing wrong? MyTestGUI.au3 Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 3, 2017 Moderators Share Posted November 3, 2017 XanzyX, I suggest reading the Tabs tutorial in the Wiki - if you still have questions then post again. M23 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...
XanzyX Posted November 4, 2017 Author Share Posted November 4, 2017 Thank you. It was very informative but I never saw a solution to my situation Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 4, 2017 Moderators Share Posted November 4, 2017 XansyX, Quote I never saw a solution to my situation Really? What about this section: Quote Adding Controls To Tabs After Creation If you need to add built-in controls to a tab after the tabs have already been created, then you must use GUISwitch with the tabitemID parameter to select the correct tab before you create the control or you will find that it is visible on all tabs. And if you adapt the example code to your script you get something like this: expandcollapse popup#include <GUIConstantsEx.au3> $Form1_1 = GUICreate("My Test GUI", 623, 449, -1, -1) $Tab1 = GUICtrlCreateTab(16, 16, 585, 417) ;~ Main Tab ===================================== $MainTabSheet = GUICtrlCreateTabItem("Main") $ExitButtonM = GUICtrlCreateButton("Exit", 504, 392, 81, 28) ;~ Input Tab ===================================== $InputTabSheet = GUICtrlCreateTabItem("Input") GUICtrlSetState(-1, $GUI_SHOW) $SingleFileRadio = GUICtrlCreateRadio("Select Single File", 24, 56, 180, 20) $SingleFileLocText = GUICtrlCreateLabel(IniRead("MyGUI.ini", "Main", "InputFileName", " "), 24, 80, 400, 84) $SingleFileSelectButton = GUICtrlCreateButton("Select", 430, 80, 73, 28) $SingleFileEditButton = GUICtrlCreateButton("Edit", 518, 80, 73, 28) $ExitButtonI = GUICtrlCreateButton("Exit", 504, 392, 81, 28) $RunButtonI = GUICtrlCreateButton("Run", 24, 392, 81, 28) $MultipleFileRadio = GUICtrlCreateRadio("Select Multiple Files", 24, 176, 180, 20) $FolderRadio = GUICtrlCreateRadio("Select Folder", 24, 296, 180, 20) GUICtrlCreateTabItem("") ;~ Filter Tab ===================================== $FiltersTabSheet = GUICtrlCreateTabItem("Filters") $RunButtonF = GUICtrlCreateButton("Run", 24, 392, 81, 28) $ExitButtonF = GUICtrlCreateButton("Exit", 504, 392, 81, 28) ;~ Output Tab ===================================== $OutputTabSheet = GUICtrlCreateTabItem("Output") $RunButtonO = GUICtrlCreateButton("Run", 24, 392, 81, 28) $ExitButtonO = GUICtrlCreateButton("Exit", 504, 392, 81, 28) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg ; You can have multiple cases with a common action Case $GUI_EVENT_CLOSE, $ExitButtonM, $ExitButtonI, $ExitButtonF, $ExitButtonO Exit Case $SingleFileRadio ;IniWrite("MyGUI.ini", "Main", "InputRadio", 1) Case $MultipleFileRadio ;IniWrite("MyGUI.ini", "Main", "InputRadio", 2) Case $FolderRadio ;IniWrite("MyGUI.ini", "Main", "InputRadio", 3) Case $SingleFileSelectButton ; Select the tab on which to create the control GUISwitch($Form1_1, $InputTabSheet) ; Create the control $SingleFileLocText = GUICtrlCreateLabel("Now I appear on only the input tab", 24, 80, 400, 84) GUICtrlSetBkColor($SingleFileLocText, 0xFFCCCC) ; Close the tab creation mode and reset the current GUI GUICtrlCreateTabItem("") GUISwitch($Form1_1) EndSwitch WEnd All clear now? M23 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