TheOnlyOne Posted April 11, 2015 Posted April 11, 2015 Hello, I am trying to hide all the controls in my GUI. Is it possible to do an easier way than to use GUICtrlSetState on every single Control I have?
Kyan Posted April 11, 2015 Posted April 11, 2015 $aGuiSize = WinGetClientSize($Form1) $HideControls = GUICtrlCreateLabel("",0,0,$aGuiSize[0],$aGuiSize[1] voilá Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
TheOnlyOne Posted April 11, 2015 Author Posted April 11, 2015 Okay I should be more specific. I want to be able to hide and show the Control. With your example I would have to change the size of the control over and over again just as with setstate
Kyan Posted April 11, 2015 Posted April 11, 2015 Your GUI is resizeable? You just create a label above all the other controls, it will hide what is behind it, to show them again you just need to hide that label Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
Solution BrewManNH Posted April 11, 2015 Solution Posted April 11, 2015 Here's how I'd do it. expandcollapse popup#include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> Global $Form1 = GUICreate("Form1", 616, 439, 192, 124) GUICtrlCreateGroup("Group1", 246, 91, 254, 186) Global $DummyStart = GUICtrlCreateDummy() ; get start of control creation control id GUICtrlCreateRadio("Radio1", 312, 108, 113, 17) GUICtrlCreateRadio("Radio2", 312, 231, 113, 23) GUICtrlCreateRadio("Radio3", 312, 211, 113, 17) GUICtrlCreateRadio("Radio4", 312, 149, 113, 17) GUICtrlCreateRadio("Radio5", 312, 190, 113, 17) GUICtrlCreateRadio("Radio6", 312, 129, 113, 17) GUICtrlCreateRadio("Radio7", 312, 169, 113, 17) Global $DummyEnd = GUICtrlCreateDummy() ; get end of control creation id GUICtrlCreateGroup("", -99, -99, 1, 1) Global $Button1 = GUICtrlCreateButton(" Hide ", 273, 372, 75, 25) GUISetState(@SW_SHOW) While 1 Sleep(100) $msg = GUIGetMsg() Switch $msg Case $Button1 Button1Click() Case $GUI_Event_Close Exit EndSwitch WEnd Func Button1Click() Local Static $toggle = True $toggle = Not $toggle For $Loop = $DummyStart + 1 To $DummyEnd - 1 If $toggle Then GUICtrlSetState($Loop, $GUI_SHOW) GUICtrlSetData($Button1, " Hide ") Else GUICtrlSetState($Loop, $GUI_HIDE) GUICtrlSetData($Button1, " Show ") EndIf Next EndFunc ;==>Button1Click Easily adaptable to any script if the controls to be hidden, are created in sequence. TheOnlyOne and SupaNewb 2 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
TheOnlyOne Posted April 12, 2015 Author Posted April 12, 2015 Here's how I'd do it. expandcollapse popup#include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> Global $Form1 = GUICreate("Form1", 616, 439, 192, 124) GUICtrlCreateGroup("Group1", 246, 91, 254, 186) Global $DummyStart = GUICtrlCreateDummy() ; get start of control creation control id GUICtrlCreateRadio("Radio1", 312, 108, 113, 17) GUICtrlCreateRadio("Radio2", 312, 231, 113, 23) GUICtrlCreateRadio("Radio3", 312, 211, 113, 17) GUICtrlCreateRadio("Radio4", 312, 149, 113, 17) GUICtrlCreateRadio("Radio5", 312, 190, 113, 17) GUICtrlCreateRadio("Radio6", 312, 129, 113, 17) GUICtrlCreateRadio("Radio7", 312, 169, 113, 17) Global $DummyEnd = GUICtrlCreateDummy() ; get end of control creation id GUICtrlCreateGroup("", -99, -99, 1, 1) Global $Button1 = GUICtrlCreateButton(" Hide ", 273, 372, 75, 25) GUISetState(@SW_SHOW) While 1 Sleep(100) $msg = GUIGetMsg() Switch $msg Case $Button1 Button1Click() Case $GUI_Event_Close Exit EndSwitch WEnd Func Button1Click() Local Static $toggle = True $toggle = Not $toggle For $Loop = $DummyStart + 1 To $DummyEnd - 1 If $toggle Then GUICtrlSetState($Loop, $GUI_SHOW) GUICtrlSetData($Button1, " Hide ") Else GUICtrlSetState($Loop, $GUI_HIDE) GUICtrlSetData($Button1, " Show ") EndIf Next EndFunc ;==>Button1Click Easily adaptable to any script if the controls to be hidden, are created in sequence. Ah yes, this is exactly what I needed Thanks!
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