Jump to content

Problem closing a window


effer
 Share

Recommended Posts

I have a script, which creates a window with login and password input.

When you click the OK button, the values from the inputs must be saved in variables, and then close the window.

I can't get the button to close the window, when you click it. How do I do that?

The part of the script which creates the windows looks like this:

$loginwindow = GUICreate("Login", 240, 150)

GUICtrlCreateLabel("User'", 30, 30)
$user = GUICtrlCreateInput ( "", 150,  30, 50, 20)
GUICtrlCreateLabel("Pass", 30, 55)
$pass = GUICtrlCreateInput ( "", 150,  55, 70, 20, $ES_PASSWORD)
$ok = GUICtrlCreateButton("OK", 70, 80, 60)

GUICtrlSetOnEvent($ok, "saveinfo")
GUISetState(@SW_SHOW)


Func saveinfo()
    $username = GUICtrlRead($user)
    $password = GUICtrlRead($pass)
    WinClose("Login")
EndFunc

How can i close the window when the button is clicked?

I've tried WinClose("Login"), but nothing happens...

Hope you can help me :P

Link to comment
Share on other sites

I have a script, which creates a window with login and password input.

When you click the OK button, the values from the inputs must be saved in variables, and then close the window.

I can't get the button to close the window, when you click it. How do I do that?

The part of the script which creates the windows looks like this:

$loginwindow = GUICreate("Login", 240, 150)

GUICtrlCreateLabel("User'", 30, 30)
$user = GUICtrlCreateInput ( "", 150,  30, 50, 20)
GUICtrlCreateLabel("Pass", 30, 55)
$pass = GUICtrlCreateInput ( "", 150,  55, 70, 20, $ES_PASSWORD)
$ok = GUICtrlCreateButton("OK", 70, 80, 60)

GUICtrlSetOnEvent($ok, "saveinfo")
GUISetState(@SW_SHOW)
Func saveinfo()
    $username = GUICtrlRead($user)
    $password = GUICtrlRead($pass)
    WinClose("Login")
EndFunc

How can i close the window when the button is clicked?

I've tried WinClose("Login"), but nothing happens...

Hope you can help me :P

Try using GUIDelete.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

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...