FabFly Posted December 20, 2005 Posted December 20, 2005 Hi all, I'm using the IE.au3 UDF in my scripts. But when I'm launching several compiled scripts, IE is crashing. How can I lauch several compiled scripts using the same UDF ?? Thanks, FabFly
seandisanti Posted December 20, 2005 Posted December 20, 2005 Hi all,I'm using the IE.au3 UDF in my scripts.But when I'm launching several compiled scripts, IE is crashing.How can I lauch several compiled scripts using the same UDF ??Thanks,FabFlyi've never had a problem with it. are you having each create it's own instance of IE? also, are the scripts each downloading something? the reason that i ask that is because there is a default limit of number of allowable downloads (i think it's 5) and i'm not sure if IE crashes if you force a 6th. i know that the limit is stored in a registry key somewhere, but don't remember where. You'll be able to get better help after posting some of your code... also, you want to make sure you have all of your updates and patches installed for IE
Valuater Posted December 20, 2005 Posted December 20, 2005 are you having each create it's own instance of IE?thats most likely the problemyour compiled scripts probably have the same object name$oIE = _ObjectCreate()then the controls are sent to that object... thus many objects with the same name would eventually crash8)
FabFly Posted December 21, 2005 Author Posted December 21, 2005 thats most likely the problemyour compiled scripts probably have the same object name$oIE = _ObjectCreate()then the controls are sent to that object... thus many objects with the same name would eventually crash8)@Valuateryou're right !!!!thanks a lot for your helpThanks to cameronsdad too.Regards,FabFly
Valuater Posted December 21, 2005 Posted December 21, 2005 @Valuateryou're right !!!!thanks a lot for your helpThanks to cameronsdad too.Regards,FabFlyhe and I are glad to help8)
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