Jump to content

simple gui issu


Recommended Posts

  • Moderators

i wanna create a gui with a child gui when i on the child gui's x it mus close the child gui and not both how can i make that working, i know it is simple but i have forgotten

After 2 1/2 years, this should give you enough ideas to accomplish what you want on your own:
$hgui = GUICreate("My GUI", 300, 200)
$hChild = GUICreate("Child GUI", 150, 100, -1, -1, -1, -1, $hgui)
GUISetState(@SW_SHOW, $hgui)
GUISetState(@SW_SHOW, $hChild)
While 1
    Switch GUIGetMsg()
        Case -3
            If WinActive($hChild) Then 
                GUIDelete($hChild)
            Else
                Exit
            EndIf
    EndSwitch
WEnd

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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