Jump to content

Recommended Posts

Posted (edited)

Alright, I got a script that takes some variables from it's user...

And then when a button is pressed I have it do the following:

WinSetState("MyGUIName", "", @SW_HIDE)

But what if I want to close the window completely, and keep the rest of the script running??

If I use something like this:

While 1
        $msg = GUIGetMsg()
        Select
            Case $msg = $GUI_EVENT_CLOSE
                Exit
            Case $msg = $button_pause
                Run2Pause()
                ExitLoop
        EndSelect
WEnd

It kills the entire script...

Is there a way to kill the GUI without killing the script??

Edited by Oldschool

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
×
×
  • Create New...