realkiller Posted March 28, 2008 Posted March 28, 2008 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 Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2
Moderators SmOke_N Posted March 28, 2008 Moderators Posted March 28, 2008 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 forgottenAfter 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.
realkiller Posted March 28, 2008 Author Posted March 28, 2008 thx;) for remebering me again;) Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2
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