jonathanhafkamp Posted March 12, 2005 Posted March 12, 2005 Hey, I can't close the window while running an function.
steveR Posted March 12, 2005 Posted March 12, 2005 Open task manager ( CONTROL-ALT-DELETE ) and kill the AutoIt3 process. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
jonathanhafkamp Posted March 12, 2005 Author Posted March 12, 2005 How can I stop that function while running that function?
steveR Posted March 12, 2005 Posted March 12, 2005 You can add a condition statement(s) and Return statement as a way to jump out. Post your code so we get a better idea of what the problem is. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
CyberSlug Posted March 12, 2005 Posted March 12, 2005 Problem might be like the following: #include <GuiConstants.au3> GuiCreate("Example") $button = GuiCtrlCreateButton("Click Me", 10, 10, 200, 200) GuiSetState(@SW_SHOW) While 1 $msg = GuiGetMsg() If $msg = $GUI_EVENT_CLOSE Then Exit If $msg = $button Then oops_Function_That_Forgets_To_Check_GuiGetMsg() WEnd Func oops_Function_That_Forgets_To_Check_GuiGetMsg() While 1 sleep(100) WEnd EndFunc Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
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