Search found 4 matches

by EliasLor
Sat Aug 28, 2010 8:23 pm
Forum: General Discussion
Topic: if web page doesn’t exist
Replies: 2
Views: 8615

if web page doesn’t exist

I think what you need to do is put code in to tell you when the title of the web page states that it does not exist. So if the text for the web page signifies that it could not be found you would create a local boolean variable that goes from False to True, the variable could be ....WEBPAGEDOESNOTEX...
by EliasLor
Sat Aug 28, 2010 8:07 pm
Forum: General Discussion
Topic: Order Active Tasks
Replies: 5
Views: 14065

Order Active Tasks

Oleg,         Your solution works if you run the tasks in order but if you are running tasks randomly or out of order I found a better solution(or so I think). What I figured out was this. What I did was this...I created a global variable called GT(or Global Tasks) as a counter and set it to 0. Then...
by EliasLor
Fri Aug 27, 2010 1:47 am
Forum: General Discussion
Topic: Order Active Tasks
Replies: 5
Views: 14065

Order Active Tasks

I tried that but that doesn't solve the problem. If you tell robotask to wait for another process then when you run the 1st task then the second task is waiting for the 1st, that's o.k. But if you run a 3rd task while the first one is still running, then the 2nd task will be waiting for the 1st and ...
by EliasLor
Fri Aug 27, 2010 1:18 am
Forum: General Discussion
Topic: Order Active Tasks
Replies: 5
Views: 14065

Order Active Tasks

I have about 21 tasks that I'm executing and they can execute at different times, but sometimes may execute while another task is executing. What I need to do is to be able to tell Robotask to execute in order. So basically task 1 executes then task 2 executes, I want task 2 to wait for task 1 to fi...