Borje Posted March 8, 2008 Share Posted March 8, 2008 Hello I need little help what I must do for jump from one place inside program to another place? In basic it was Gosub or goto what is the command in Autoit for the same function? Link to comment Share on other sites More sharing options...
BigDod Posted March 8, 2008 Share Posted March 8, 2008 HelloI need little help what I must do for jump from one place inside program to another place?In basic it was Gosub or goto what is the command in Autoit for the same function?You use functions and just call the function when you need it. 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 More sharing options...
Borje Posted March 8, 2008 Author Share Posted March 8, 2008 Thanks BigDod Please do you have some example what i should do Link to comment Share on other sites More sharing options...
Paulie Posted March 8, 2008 Share Posted March 8, 2008 Thanks BigDod Please do you have some example what i should do While 1 ;do some stuff! ;do more stuff! If $Error = 1 then ;Ahhhh Error Occured!! ErrorOccured() ; <---- Jumps to function EndIf WEnd Func ErrorOccured();<-- The function that is called ;Cleanup Stuff EndFunc Link to comment Share on other sites More sharing options...
Borje Posted March 8, 2008 Author Share Posted March 8, 2008 Thank Pauline Now I know little more I would test this thanks agian. Link to comment Share on other sites More sharing options...
Paulie Posted March 8, 2008 Share Posted March 8, 2008 Thank PaulineNo problem!But you might want to read my name more carefully lol Link to comment Share on other sites More sharing options...
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