sheck Posted March 24, 2008 Posted March 24, 2008 I made a program for work, it uses a lot of encryption and runs on a P3 machine. Sometimes it takes a long time to execute a function. During those times an autoit window pops up:Name: Script ControlText: The script you are trying to execute is taking longer than expected to run. Click End to abort the script, or Continue to continue execution. I would like to know how to turn that off. Live and Learn, 'cause Knowledge is Super Power.
DarkMatter Posted March 24, 2008 Posted March 24, 2008 (edited) Not sure if you can, that has to do with the Windows Script Control Object. I have seen that happen a lot in old VB6 applications that are using network communication or long mathematical functions, but not in AutoIT. If you are making calls to the Script Control Object then you could do something like this: scriptcontrol.Timeout = 30000 Edited March 24, 2008 by MattWise [sub]Quantum mechanics: The dreams stuff is made of[/sub]
sheck Posted March 24, 2008 Author Posted March 24, 2008 Not sure if you can, that has to do with the Windows Script Control Object. I have seen that happen a lot in old VB6 applications that are using network communication or long mathematical functions, but not in AutoIT. If you are making calls to the Script Control Object then you could do something like this: scriptcontrol.Timeout = 30000 You are right. I'm using MD5.au3, which uses VB objects. How do I code it in AutoIt? I'm do not know how to work with VB within AutoIt. Live and Learn, 'cause Knowledge is Super Power.
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