Jump to content

Recommended Posts

Posted (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 by akroon
Posted

this shows first gui. is that what you wanted?

GUISetState(@SW_SHOW,$form) <<<<<<<<<<<<<<<<<<<<<<<<<<<
GUISetState(@SW_HIDE,$form2)

MEASURE TWICE - CUT ONCE

Posted

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
  • Moderators
Posted

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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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:

  Reveal hidden contents

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...