akroon Posted January 6, 2014 Share Posted January 6, 2014 (edited) Hy guys i have a program like that #include <GUIConstantsEx.au3> #include <ColorConstants.au3> #include <WindowsConstants.au3> #include <GUIConstants.au3> #include <GuiEdit.au3> #include <File.au3> $form = GUICreate("My gui",485, 305) $form2 = GUICreate("My gui2",485, 305) GUISetState(@SW_SHOW) GUISetState(@SW_HIDE,$form2) At last line the gui will hide but it doesn't happen,why? I have 2 window and i need to hide one. Thanx. Edited January 6, 2014 by akroon Link to comment Share on other sites More sharing options...
reb Posted January 6, 2014 Share Posted January 6, 2014 this shows first gui. is that what you wanted? GUISetState(@SW_SHOW,$form) <<<<<<<<<<<<<<<<<<<<<<<<<<< GUISetState(@SW_HIDE,$form2) MEASURE TWICE - CUT ONCE Link to comment Share on other sites More sharing options...
l3ill Posted January 6, 2014 Share Posted January 6, 2014 This hides the second window: #include <GUIConstantsEx.au3> #include <ColorConstants.au3> #include <WindowsConstants.au3> #include <GUIConstants.au3> #include <GuiEdit.au3> #include <File.au3> $form = GUICreate("My gui",485, 305) $form2 = GUICreate("My gui2",485, 305) GUISetState(@SW_SHOW, $form) GUISetState(@SW_HIDE,$form2) While 1 Sleep(100) WEnd My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example Link to comment Share on other sites More sharing options...
Solution akroon Posted January 8, 2014 Author Solution Share Posted January 8, 2014 i don't know how but now it work, maybe there was somethink wrong in the code Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 8, 2014 Moderators Share Posted January 8, 2014 akroon,In your origianl code snippet:$form = GUICreate("My gui",485, 305) $form2 = GUICreate("My gui2",485, 305) GUISetState(@SW_SHOW) GUISetState(@SW_HIDE,$form2)both of the GUISetState lines refer to $form2. As explained in the Help file, if you do not give a handle as the second parameter the the function acts on the last used window - in this case it is $form2 as you have just created it. So you never apply a state to $form. All clear? M23 riceking 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