Syruz Posted October 24, 2007 Posted October 24, 2007 Is there a way to exit a function early? yutijang 1
Achilles Posted October 24, 2007 Posted October 24, 2007 Is there a way to exit a function early?Use Return For example Func _DoNothingMuch() Sleep(2000) Return Sleep(2000) EndFunc This will sleep two seconds, and then exit... so the next Sleep(2000) is useless. yutijang 1 My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
Syruz Posted October 24, 2007 Author Posted October 24, 2007 Thank you, thought Return was just used to return a variable for a function...
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