Hello All,
I have a subroutine that uses IECreate>IE[0]. I have a list of multiple folders. For each folder it needs to Gosub the routine with IECreate>IE[0]. It works the first time, but then it just stops execution when the sub is called again. I thought I might have to us IEQuit. Tried that, didn't work.
Any ideas?
PepsiHog
IECreate
Moderators: JRL, Dorian (MJT support)
IECreate
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
- Grovkillen
- Automation Wizard
- Posts: 1132
- Joined: Fri Aug 10, 2012 2:38 pm
- Location: Bräcke, Sweden
- Contact:
Re: IECreate
Instead of IE[0] you may want to create a unique integer for each sub routine. So that would be IE[%k%] or perhaps in your instance IE[%SUBNAME_Var_1%].
Re: IECreate
Grovkillen,
Yea, I tried that. Didn't work.
Thanks for helping,
PepsiHog
Yea, I tried that. Didn't work.
Thanks for helping,
PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
Re: IECreate
OK. It has something to do with the structure. Has nothing to do with IECreate.
PepsiHog
PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
Re: IECreate
[Solved]
I am using IEShowIE. The reference is IE[1]. But I had IEShowIE>1,1.
Sometimes, I just want to pluck my brain out, and beat it silly!
PepsiHog
I am using IEShowIE. The reference is IE[1]. But I had IEShowIE>1,1.
Sometimes, I just want to pluck my brain out, and beat it silly!

PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
Re: IECreate
Hey! Wait just one second!
Why did it work the first time with IEShowIE>1,1? It only produced an error the second time around.
Maybe, Marcus needs to pluck his brain out and......
PepsiHog
Why did it work the first time with IEShowIE>1,1? It only produced an error the second time around.
Maybe, Marcus needs to pluck his brain out and......

PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Re: IECreate
It might have worked first time because IE[1] equaled 1. Second time I presume IE[1] became 0 and you created a new instance called IE[2]. Instance 1 presumably no longer existed, but did first time around.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Re: IECreate
So........
The moral of this story is.....maybe.....don't try to change the format!
PepsiHog
The moral of this story is.....maybe.....don't try to change the format!

PepsiHog
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!