Data and reporting

Technical support and scripting issues

Moderators: JRL, Dorian (MJT support)

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Data and reporting

Post by zabros2020 » Tue Sep 22, 2009 6:55 am

Hi Guys,
I have looked up and down on this forum for an answer to this and i must say plenty of useful stuff but nothing to cover this issue i am having.

At the moment i have multiple users who run my EXE to do a particular job, at various stages of the script i write to a log file indicating where i am up to. Unfortunately, there seems to be a large number of times where the user has clicked SHIFT + ESC.

At the moment a typical log file will look like this

Code: Select all

New automation
step one complete
step two complete
Automation complete

New automation
step one complete

New automation

New automation
New automation
step one complete
step two complete
Automation complete
My questions are as follow:

1. Since it seems that the user is pressing shift and escape to stop the automation manually many times, my data is not quite reflective, the above example would make it seem as though only 2/4 automations were complete when in reality the same one was run 3 times with user intervention half way through it. I have tried logging when shift and escape is pressed by using

Code: Select all

OnEvent>KEYDOWN,VK_ESCPAE,1,UserStopped
, where UserStopped is a subroutine that writes something to the log file. This is not working unfortunately.

2. Is there any better way to gather data, that doesn't rely on text files? My VB and database knowledge is not great, but I am a quick learner if someone can point me in the right direction

Thank you all for reading such a long post.

Regards,
Zabros

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Tue Sep 22, 2009 12:47 pm

This is what I have done to handle similar situations.

First , create your own escape sequence using OnEvent>. I like to use WinKey + ESC. Set this up so that your script exiting key strokes log to your file first then exit the script.

Something like:

Code: Select all

OnEvent>Key_Down,VK27,8,Exit

SRT>Exit
  WriteLn>C:\logfile.txt,wres,Process closed by user
  Exit>0
END>Exit
The next step is to disable Shift+Esc when you compile the code. The easiest way to do this is to pick the check box that says:
"Disable Shift+Esc Stop Key (/NOSTOPKEY)"

This topic has been indirectly discussed. The Discussionis the reason that the NOSTOPKEY compile option exists.

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Sep 23, 2009 1:31 am

Thanks for your help JRL
Your explanation made sense in theory, but when i tried the following script as a test, it never worked

Code: Select all

OnEvent>KEY_DOWN,VK27,8,Exit

Wait>10

SRT>Exit
  MessageModal>You have pressed Windows + ESCAPE
  Exit>0
END>Exit
I was trying to use Windows and Esc... I compiled the script and disabled the shift escape option but, when i run it and i have 10 seconds to press Ctrl and Esc, nothing ever happens. I press and press but nothing happens.
And the script eventually times out.

Is there anything else in my settings that i need to look into.

p.s. thank you so much for such a swift reply :D

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Wed Sep 23, 2009 2:15 am

Try something like this. A wait is implied by the loop incrementing a counter until a plateau is reached. But the main thing is that the script never stops processing. When you "Wait" the script is stopped and therefore the OnEvent will not fire.

Code: Select all

OnEvent>KEY_DOWN,VK27,8,Exit

Let>kk=0
Label>Loop
  Add>kk,1
  If>kk>1000
    Exit>0
  EndIf
  Wait>0.01
Goto>Loop

SRT>Exit
  MessageModal>You have pressed Windows + ESCAPE
  Exit>0
END>Exit

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Sep 23, 2009 3:46 am

Fantasticcc!!!!
thank you so much for your help, so it wasn't the code that was the issue, it was the way i was testing it.

FYI, I also tried having
OnEvent>KEY_DOWN,VK27,2,Exit
And disabling the automatic Shift escpae routine, and now I am able to log when shift Escape has been pressed as this OnEvent overrides the other one...

The reason i didn't want to use windows + Esc is because of change management, culture change aint that easy.

Once again, your help is very much apreciated

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Sep 30, 2009 12:13 am

Hi guys,

I have tried putting together all i know in regards to this issue but it is still not working. When i compile the code below:

Code: Select all

COMPILE_OPTS|\\tsclient\H\userstop.exe||CONSOLE=0|INCLUDES=1| /NOSTOPKEY
Dialog>UserStopDialog
Caption=User Aborted Automation
Left=300
Top=300
Width=310
Height=320
Max=0
Min=0
Close=0
Resize=0
Label=Please select the most apropriate response and press OK,5,5
RadioGroup=Options,Reason For Stoppage,5,20,295,150,Existing customer cannot be found in Siebel%CRLF%Customer contact is required%CRLF%Managed By field requires amendment%CRLF%Automation entering data in the wrong field%CRLF%System was in incorrect state when automation was run%CRLF%Other,reason
Edit=OtherReason,60,145,230,Specify other reason here
Button=OK,120,250,60,20,3
EndDialog>UserStopDialog

OnEvent>KEY_DOWN,VK27,1,UserStop
Let>kk=0
Label>Loop
  Add>kk,1
  If>kk>1000
    Exit>0
  EndIf
  Wait>0.01
Goto>Loop

SRT>UserStop
Label>OtherReason
Show>UserStopDialog,result
//If other has been selected, the user must type why
If>UserStopDialog.Options.ItemIndex=5
    MessageModal>UserStopDialog.Options.ItemIndex=5
    If>UserStopDialog.OtherReason=Specify other reason here
        MessageModal>UserStopDialog.OtherReason=Specify other reason here
        MessageModal>Please specify a reason as to why the automation was stopped
        Goto>OtherReason
    Else
        MessageModal>UserStopDialog.OtherReason<Specify>I would write User Stop - Other Reason: %UserStopDialog.OtherReason%
    EndIf
Else
MessageModal>UserStopDialog.Options.ItemIndex<5>UserStopDialog.OtherReason<Specify>UserStopDialog.OtherReason<Specify>Unable to select option and type other reason.%CRLF%Please choose one option and click OK
        GoTo>OtherReason
    Else
        MEssageModal>UserStopDialog.OtherReason=Specify other reason here
        MessageModal> I would write User Stop - %UserStopDialog.Options%
    EndIf
EndIf
MessageModal>I should be exiting
Exit>0
END>UserStop
As you can see i have disabled the in-built Shift-Esc and added my own.

However when i run this compiled exe and press shift+esc, nothing happens, the macro scheduler emblem continues to flash, then when i click the mouse (anywhere on the screen) the first diagnostic MessageModal message appears, i click okay and it just idles, until i click the mouse again, tand then the second diagnostic message modal appears and so on and so on.

All i want is for the automation to stop when shift escape is pressed and it be recorded somewhere that it was pressed...any ideas?

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Wed Sep 30, 2009 2:38 am

I compiled and ran your script and it works great for me.

First I removed your compile line (the first line in the script) from the script and selected the NoStopKey option when I compiled.

When I pressed Shift+ESC your dialog popped up

The only way to finish the script was to pick the "Other" radio button and then alter the text in the accompanying edit box. But I would call the Shift+ESC OnEvent> a resounding success.

I don't know why you are not seeing the dialog box but the fact that you get to the modal messages indicates that the shift+ESC is working for you also. They will only display if the "UserStop" subroutine executes and it will only run when Shift+ESC is pressed.

Are you sure you're running the latest version of your compiled script. I've caught myself running an old version not remembering that I put the last version in a new place.

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Sep 30, 2009 4:13 am

I compiled and ran your script and it works great for me.
It hasn't worked for me I'm afraid. I am running in a virtual dev enviroment, should that have an affect on it at all?
First I removed your compile line (the first line in the script) from the script and selected the NoStopKey option when I compiled.

When I pressed Shift+ESC your dialog popped up ........
I don't know why you are not seeing the dialog box but the fact that you get to the modal messages indicates that the shift+ESC is working for you also.
I didn't know i had to remove the compile line everytime i compile but I have attempted that now, and still no luck, i even tried ticking and unticking the "compile includes" check box. no luck. Pressing Shift and Esc does bring up my dialog box everytime, but no matter what i select, it is not stopping the script fully as i expect.

The aim is that when a user stops it we can gather data on why users are stopping it, so they have to choose other and write a solution, or choose one existing solution. If they choose other and don't change the text, it should notify them that they have to give a reason. And if they give a reason but choose something other than other, it should tell them they can't do that.

Eventually it should shut down. But nothing is happening for me :(
Are you sure you're running the latest version of your compiled script. I've caught myself running an old version not remembering that I put the last version in a new place.
hehe, i have made that mistake in the past, but not this time hehe.

thanks in advance

p.s could my problem have something to do with this issue?
http://www.mjtnet.com/usergroup/viewtopic.php?t=5720
I am using Version 11.1.13

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Wed Sep 30, 2009 5:14 am

I didn't know i had to remove the compile line everytime i compile
You don't need to remove that line. I did simply because the file path and location was wrong for my system.
You wrote:Pressing Shift and Esc does bring up my dialog box everytime, but no matter what i select, it is not stopping the script fully as i expect.
I wrote:The only way to finish the script was to pick the "Other" radio button and then alter the text in the accompanying edit box.
Therefore:
I changed your script to make the closing logic make sense to me and hopefully this is more what you're after.

Code: Select all

Dialog>UserStopDialog
Caption=User Aborted Automation
Left=300
Top=300
Width=310
Height=320
Max=0
Min=0
Close=0
Resize=0
Label=Please select the most apropriate response and press OK,5,5
RadioGroup=Options,Reason For Stoppage,5,20,295,150,Existing customer cannot be found in Siebel%CRLF%Customer contact is required%CRLF%Managed By field requires amendment%CRLF%Automation entering data in the wrong field%CRLF%System was in incorrect state when automation was run%CRLF%Other,reason
Edit=OtherReason,60,145,230,Specify other reason here
Button=OK,120,250,60,20,3
EndDialog>UserStopDialog

OnEvent>KEY_DOWN,VK27,1,UserStop
Let>kk=0
Label>Loop
  Add>kk,1
  If>kk>1000
    Exit>0
  EndIf
  Wait>0.01
Goto>Loop

SRT>UserStop
Label>OtherReason
Show>UserStopDialog,result
//If other has been selected, the user must type why
If>UserStopDialog.Options.ItemIndex=5
    //MessageModal>UserStopDialog.Options.ItemIndex=5
    If>UserStopDialog.OtherReason=Specify other reason here
        MessageModal>UserStopDialog.OtherReason=Specify other reason here%CRLF%%CRLF%Please specify a reason as to why the automation was stopped
        Goto>OtherReason
    Else
        MessageModal>UserStopDialog.OtherReason<Specify>I would write User Stop - Other Reason: %UserStopDialog.OtherReason%
    EndIf
EndIf
If>UserStopDialog.Options.ItemIndex<>5
  MDL>Instead of message will write to log%CRLF%%CRLF%"%USERSTOPDIALOG.OPTIONS%"
EndIf
MessageModal>I should be exiting
Exit>0
END>UserStop

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Sep 30, 2009 6:13 am

OK i'm confused, and it has nothing to do with your help because you have been wonderful.

I run the code you gave me on a DEV machine and the following things happen for the following scenarios:
1. Press shift escape->Dialog Box appears-> Choose other reason and type aaa into field, press OK->Message modal box appears-> I click OK-> System just idles idefinately with the MS logo flashing-> I finally click the mouse anywhere on screen->Message modal box comes up saying I should be exiting, I click OK->Idles again indefinately-> I click the mouse anywhere->automation stops and logo disappears from system tray

2. Press shift escape->Dialog box appears->Choose any reason except other and press OK-> nothing happens, idles forever and flashing in sys tray-> I click mouse-> nothing happens-> i press shift esc again nothing happens_. I press alt ctrl del and kill process

When i run it on a Production machine, scenario 2 happens regardless of which option i have chosen for the stoppage

Its quite bizare

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Wed Sep 30, 2009 1:42 pm

Earlier you wrote:...then when i click the mouse (anywhere on the screen) the first diagnostic MessageModal message appears, i click okay and it just idles, until i click the mouse again, tand then the second diagnostic message modal appears and so on and so on.
When i run it on a Production machine, scenario 2 happens regardless of which option i have chosen for the stoppage
That is odd since even the idle loop is set to time out and close the script after roughly 10 seconds so there's no reason the script should run forever. The one thing I can think of (based on the "Earlier you wrote" quoted text from a previous post in this thread) is that for some reason your modal messages are executing but are not displaying. The modal messages have to be closed or the script idles forever. If you can't see them, you can't close them. The obvious question would be; why are they not displaying?

I have not set up a virtual environment to test in but I know Marcus does and I've never heard him complain that Macro Scheduler has odd behavior in a virtual environment. Add to that that you say it behaves badly on a production machine. You have not said what OS you're running for each of these environments.

I have two suggestions: First turn off any malware checking software. If that doesn't help, try logging the results and post them so we have some way of determining what might be happening. An easy way to log an executable is to execute it from a command line or from "Start">"Run". In either case based on your compile line path try:

\\tsclient\H\userstop.exe /logfile=c:\userstop_log.txt

If the path is incorrect make any needed adjustments. If you can resolve your issue by examining the logfile that would be great. If you cannot, post it and perhaps the forum members can help.

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Thu Oct 01, 2009 5:16 am

Sorry about ignoring the what sistem i am running. Both my virtual and production enviroments are Windows XP Professional Version 2002 Service Pack 2.

I also agree with you about the message modals and malaware. i have run many other scripts and they all display their message modals.

Finally i ran the script like you said and have looked over the log file so many times, i still cannot figure out why, in fact, this time it allowed me to press shift and esc multiple times... even worse, sometimes it allowe dme and sometimes not, but when i waited 10 or so seconds it allowed me again... eventually it wouldn't let me and i had to kill the process via alt ctrl del

here is the log file, sorry its long guys
[quote]1/10/2009 15:03:55:852 - Started Macro : C:\userstop.exe
1/10/2009 15:03:55:862 - START: Dialog>UserStopDialog
1/10/2009 15:03:55:992 - END: EndDialog>UserStopDialog
1/10/2009 15:03:56:012 - START: OnEvent>KEY_DOWN,VK27,1,UserStop
1/10/2009 15:03:56:022 - END: OnEvent>KEY_DOWN,VK27,1,UserStop
1/10/2009 15:03:56:032 - START:
1/10/2009 15:03:56:032 - END:
1/10/2009 15:03:56:032 - START: Let>kk=0
1/10/2009 15:03:56:032 - END: Let>kk=0
1/10/2009 15:03:56:032 - START: Label>Loop
1/10/2009 15:03:56:032 - END: Label>Loop
1/10/2009 15:03:56:032 - START: Add>kk,1
1/10/2009 15:03:56:042 - END: Add>kk,1
1/10/2009 15:03:56:042 - START: If>kk>1000
1/10/2009 15:03:56:052 - END: EndIf
1/10/2009 15:03:56:052 - START: Wait>0.01
1/10/2009 15:03:56:073 - END: Wait>0.01
1/10/2009 15:03:56:073 - START: Goto>Loop
1/10/2009 15:03:56:073 - END: Label>Loop
1/10/2009 15:03:56:083 - START: Add>kk,1
1/10/2009 15:03:56:083 - END: Add>kk,1
1/10/2009 15:03:56:093 - START: If>kk>1000
1/10/2009 15:03:56:093 - END: EndIf
1/10/2009 15:03:56:093 - START: Wait>0.01
1/10/2009 15:03:56:103 - END: Wait>0.01
1/10/2009 15:03:56:103 - START: Goto>Loop
1/10/2009 15:03:56:103 - END: Label>Loop
1/10/2009 15:03:56:113 - START: Add>kk,1
1/10/2009 15:03:56:113 - END: Add>kk,1
1/10/2009 15:03:56:123 - START: If>kk>1000
1/10/2009 15:03:56:133 - END: EndIf
1/10/2009 15:03:56:133 - START: Wait>0.01
1/10/2009 15:03:56:153 - END: Wait>0.01
1/10/2009 15:03:56:153 - START: Goto>Loop
1/10/2009 15:03:56:163 - END: Label>Loop
1/10/2009 15:03:56:163 - START: Add>kk,1
1/10/2009 15:03:56:173 - END: Add>kk,1
1/10/2009 15:03:56:183 - START: If>kk>1000
1/10/2009 15:03:56:183 - END: EndIf
1/10/2009 15:03:56:193 - START: Wait>0.01
1/10/2009 15:03:56:203 - END: Wait>0.01
1/10/2009 15:03:56:203 - START: Goto>Loop
1/10/2009 15:03:56:213 - END: Label>Loop
1/10/2009 15:03:56:213 - START: Add>kk,1
1/10/2009 15:03:56:223 - END: Add>kk,1
1/10/2009 15:03:56:223 - START: If>kk>1000
1/10/2009 15:03:56:233 - END: EndIf
1/10/2009 15:03:56:243 - START: Wait>0.01
1/10/2009 15:03:56:263 - END: Wait>0.01
1/10/2009 15:03:56:263 - START: Goto>Loop
1/10/2009 15:03:56:283 - END: Label>Loop
1/10/2009 15:03:56:293 - START: Add>kk,1
1/10/2009 15:03:56:303 - END: Add>kk,1
1/10/2009 15:03:56:313 - START: If>kk>1000
1/10/2009 15:03:56:324 - END: EndIf
1/10/2009 15:03:56:344 - START: Wait>0.01
1/10/2009 15:03:56:364 - END: Wait>0.01
1/10/2009 15:03:56:374 - START: Goto>Loop
1/10/2009 15:03:56:384 - END: Label>Loop
1/10/2009 15:03:56:394 - START: Add>kk,1
1/10/2009 15:03:56:404 - END: Add>kk,1
1/10/2009 15:03:56:404 - START: If>kk>1000
1/10/2009 15:03:56:404 - END: EndIf
1/10/2009 15:03:56:404 - START: Wait>0.01
1/10/2009 15:03:56:414 - END: Wait>0.01
1/10/2009 15:03:56:414 - START: Goto>Loop
1/10/2009 15:03:56:424 - END: Label>Loop
1/10/2009 15:03:56:424 - START: Add>kk,1
1/10/2009 15:03:56:434 - END: Add>kk,1
1/10/2009 15:03:56:434 - START: If>kk>1000
1/10/2009 15:03:56:434 - END: EndIf
1/10/2009 15:03:56:444 - START: Wait>0.01
1/10/2009 15:03:56:454 - END: Wait>0.01
1/10/2009 15:03:56:454 - START: Goto>Loop
1/10/2009 15:03:56:454 - END: Label>Loop
1/10/2009 15:03:56:464 - START: Add>kk,1
1/10/2009 15:03:56:464 - END: Add>kk,1
1/10/2009 15:03:56:474 - START: If>kk>1000
1/10/2009 15:03:56:474 - END: EndIf
1/10/2009 15:03:56:484 - START: Wait>0.01
1/10/2009 15:03:56:494 - END: Wait>0.01
1/10/2009 15:03:56:494 - START: Goto>Loop
1/10/2009 15:03:56:504 - END: Label>Loop
1/10/2009 15:03:56:504 - START: Add>kk,1
1/10/2009 15:03:56:504 - END: Add>kk,1
1/10/2009 15:03:56:514 - START: If>kk>1000
1/10/2009 15:03:56:514 - END: EndIf
1/10/2009 15:03:56:544 - START: Wait>0.01
1/10/2009 15:03:56:585 - END: Wait>0.01
1/10/2009 15:03:56:585 - START: Goto>Loop
1/10/2009 15:03:56:585 - END: Label>Loop
1/10/2009 15:03:56:605 - START: Add>kk,1
1/10/2009 15:03:56:635 - END: Add>kk,1
1/10/2009 15:03:56:665 - START: If>kk>1000
1/10/2009 15:03:56:715 - END: EndIf
1/10/2009 15:03:56:775 - START: Wait>0.01
1/10/2009 15:03:56:815 - END: Wait>0.01
1/10/2009 15:03:56:836 - START: Goto>Loop
1/10/2009 15:03:56:846 - END: Label>Loop
1/10/2009 15:03:56:856 - START: Add>kk,1
1/10/2009 15:03:56:866 - END: Add>kk,1
1/10/2009 15:03:56:876 - START: If>kk>1000
1/10/2009 15:03:56:876 - END: EndIf
1/10/2009 15:03:56:886 - START: Wait>0.01
1/10/2009 15:03:56:906 - END: Wait>0.01
1/10/2009 15:03:56:916 - START: Goto>Loop
1/10/2009 15:03:56:916 - END: Label>Loop
1/10/2009 15:03:56:926 - START: Add>kk,1
1/10/2009 15:03:56:936 - END: Add>kk,1
1/10/2009 15:03:56:946 - START: If>kk>1000
1/10/2009 15:03:56:956 - END: EndIf
1/10/2009 15:03:56:956 - START: Wait>0.01
1/10/2009 15:03:56:976 - END: Wait>0.01
1/10/2009 15:03:56:986 - START: Goto>Loop
1/10/2009 15:03:56:996 - END: Label>Loop
1/10/2009 15:03:57:006 - START: Add>kk,1
1/10/2009 15:03:57:016 - END: Add>kk,1
1/10/2009 15:03:57:016 - START: If>kk>1000
1/10/2009 15:03:57:026 - END: EndIf
1/10/2009 15:03:57:036 - START: Wait>0.01
1/10/2009 15:03:57:056 - END: Wait>0.01
1/10/2009 15:03:57:066 - START: Goto>Loop
1/10/2009 15:03:57:066 - END: Label>Loop
1/10/2009 15:03:57:076 - START: Add>kk,1
1/10/2009 15:03:57:087 - END: Add>kk,1
1/10/2009 15:03:57:087 - START: If>kk>1000
1/10/2009 15:03:57:087 - END: EndIf
1/10/2009 15:03:57:087 - START: Wait>0.01
1/10/2009 15:03:57:097 - END: Wait>0.01
1/10/2009 15:03:57:097 - START: Goto>Loop
1/10/2009 15:03:57:107 - END: Label>Loop
1/10/2009 15:03:57:107 - START: Add>kk,1
1/10/2009 15:03:57:117 - END: Add>kk,1
1/10/2009 15:03:57:117 - START: If>kk>1000
1/10/2009 15:03:57:127 - END: EndIf
1/10/2009 15:03:57:127 - START: Wait>0.01
1/10/2009 15:03:57:147 - END: Wait>0.01
1/10/2009 15:03:57:147 - START: Goto>Loop
1/10/2009 15:03:57:157 - END: Label>Loop
1/10/2009 15:03:57:157 - START: Add>kk,1
1/10/2009 15:03:57:167 - END: Add>kk,1
1/10/2009 15:03:57:167 - START: If>kk>1000
1/10/2009 15:03:57:177 - END: EndIf
1/10/2009 15:03:57:177 - START: Wait>0.01
1/10/2009 15:03:57:197 - END: Wait>0.01
1/10/2009 15:03:57:207 - START: Goto>Loop
1/10/2009 15:03:57:207 - END: Label>Loop
1/10/2009 15:03:57:217 - START: Add>kk,1
1/10/2009 15:03:57:227 - END: Add>kk,1
1/10/2009 15:03:57:227 - START: If>kk>1000
1/10/2009 15:03:57:237 - END: EndIf
1/10/2009 15:03:57:237 - START: Wait>0.01
1/10/2009 15:03:57:257 - END: Wait>0.01
1/10/2009 15:03:57:257 - START: Goto>Loop
1/10/2009 15:03:57:267 - END: Label>Loop
1/10/2009 15:03:57:267 - START: Add>kk,1
1/10/2009 15:03:57:277 - END: Add>kk,1
1/10/2009 15:03:57:277 - START: If>kk>1000
1/10/2009 15:03:57:287 - END: EndIf
1/10/2009 15:03:57:287 - START: Wait>0.01
1/10/2009 15:03:57:307 - END: Wait>0.01
1/10/2009 15:03:57:307 - START: Goto>Loop
1/10/2009 15:03:57:317 - END: Label>Loop
1/10/2009 15:03:57:317 - START: Add>kk,1
1/10/2009 15:03:57:327 - END: Add>kk,1
1/10/2009 15:03:57:327 - START: If>kk>1000
1/10/2009 15:03:57:337 - END: EndIf
1/10/2009 15:03:57:337 - START: Wait>0.01
1/10/2009 15:03:57:358 - END: Wait>0.01
1/10/2009 15:03:57:358 - START: Goto>Loop
1/10/2009 15:03:57:368 - END: Label>Loop
1/10/2009 15:03:57:368 - START: Add>kk,1
1/10/2009 15:03:57:378 - END: Add>kk,1
1/10/2009 15:03:57:378 - START: If>kk>1000
1/10/2009 15:03:57:388 - END: EndIf
1/10/2009 15:03:57:388 - START: Wait>0.01
1/10/2009 15:03:57:408 - END: Wait>0.01
1/10/2009 15:03:57:408 - START: Goto>Loop
1/10/2009 15:03:57:428 - END: Label>Loop
1/10/2009 15:03:57:458 - START: Add>kk,1
1/10/2009 15:03:57:458 - END: Add>kk,1
1/10/2009 15:03:57:468 - START: If>kk>1000
1/10/2009 15:03:57:478 - END: EndIf
1/10/2009 15:03:57:488 - START: Wait>0.01
1/10/2009 15:03:57:498 - END: Wait>0.01
1/10/2009 15:03:57:518 - START: Goto>Loop
1/10/2009 15:03:57:518 - END: Label>Loop
1/10/2009 15:03:57:518 - START: Add>kk,1
1/10/2009 15:03:57:528 - END: Add>kk,1
1/10/2009 15:03:57:538 - START: If>kk>1000
1/10/2009 15:03:57:538 - END: EndIf
1/10/2009 15:03:57:548 - START: Wait>0.01
1/10/2009 15:03:57:568 - END: Wait>0.01
1/10/2009 15:03:57:578 - START: Goto>Loop
1/10/2009 15:03:57:588 - END: Label>Loop
1/10/2009 15:03:57:588 - START: Add>kk,1
1/10/2009 15:03:57:588 - END: Add>kk,1
1/10/2009 15:03:57:599 - START: If>kk>1000
1/10/2009 15:03:57:609 - END: EndIf
1/10/2009 15:03:57:609 - START: Wait>0.01
1/10/2009 15:03:57:629 - END: Wait>0.01
1/10/2009 15:03:57:629 - START: Goto>Loop
1/10/2009 15:03:57:629 - END: Label>Loop
1/10/2009 15:03:57:629 - START: Add>kk,1
1/10/2009 15:03:57:639 - END: Add>kk,1
1/10/2009 15:03:57:649 - START: If>kk>1000
1/10/2009 15:03:57:659 - END: EndIf
1/10/2009 15:03:57:669 - START: Wait>0.01
1/10/2009 15:03:57:689 - END: Wait>0.01
1/10/2009 15:03:57:699 - START: Goto>Loop
1/10/2009 15:03:57:709 - END: Label>Loop
1/10/2009 15:03:57:719 - START: Add>kk,1
1/10/2009 15:03:57:729 - END: Add>kk,1
1/10/2009 15:03:57:739 - START: If>kk>1000
1/10/2009 15:03:57:739 - END: EndIf
1/10/2009 15:03:57:749 - START: Wait>0.01
1/10/2009 15:03:57:769 - END: Wait>0.01
1/10/2009 15:03:57:769 - START: Goto>Loop
1/10/2009 15:03:57:779 - END: Label>Loop
1/10/2009 15:03:57:789 - START: Add>kk,1
1/10/2009 15:03:57:799 - END: SRT>UserStop
1/10/2009 15:03:57:809 - START: Label>OtherReason
1/10/2009 15:03:57:809 - END: Label>OtherReason
1/10/2009 15:03:57:819 - START: Show>UserStopDialog,result
1/10/2009 15:04:01:413 - END: Show>UserStopDialog,result
1/10/2009 15:04:05:188 - START: //If other has been selected, the user must type why
1/10/2009 15:04:05:239 - END: //If other has been selected, the user must type why
1/10/2009 15:04:05:279 - START: If>UserStopDialog.Options.ItemIndex=5
1/10/2009 15:04:05:289 - END: Else
1/10/2009 15:04:05:299 - START: If>UserStopDialog.OtherReason I would write User Stop - Existing customer cannot be found in Siebel
1/10/2009 15:04:08:562 - END: MessageModal> I would write User Stop - Existing customer cannot be found in Siebel
1/10/2009 15:04:08:582 - START: EndIf
1/10/2009 15:04:08:602 - END: EndIf
1/10/2009 15:04:08:602 - START: EndIf
1/10/2009 15:04:08:612 - END: EndIf
1/10/2009 15:04:08:622 - START: MessageModal>I should be exiting
1/10/2009 15:04:10:228 - END: MessageModal>I should be exiting
1/10/2009 15:04:42:615 - START: //Exit>0
1/10/2009 15:04:42:625 - END: //Exit>0
1/10/2009 15:04:42:635 - START: END>UserStop
1/10/2009 15:04:42:635 - END: END>UserStop
1/10/2009 15:04:42:645 - START: Add>kk,1
1/10/2009 15:04:42:645 - END: Add>kk,1
1/10/2009 15:04:42:655 - START: If>kk>1000
1/10/2009 15:04:42:675 - END: EndIf
1/10/2009 15:04:42:726 - START: Wait>0.01
1/10/2009 15:04:42:736 - END: Wait>0.01
1/10/2009 15:04:42:776 - START: Goto>Loop
1/10/2009 15:04:42:806 - END: Label>Loop
1/10/2009 15:04:42:826 - START: Add>kk,1
1/10/2009 15:04:42:826 - END: Add>kk,1
1/10/2009 15:04:42:836 - START: If>kk>1000
1/10/2009 15:04:42:846 - END: EndIf
1/10/2009 15:04:42:856 - START: Wait>0.01
1/10/2009 15:04:42:876 - END: Wait>0.01
1/10/2009 15:04:42:886 - START: Goto>Loop
1/10/2009 15:04:42:886 - END: Label>Loop
1/10/2009 15:04:42:896 - START: Add>kk,1
1/10/2009 15:04:42:906 - END: Add>kk,1
1/10/2009 15:04:42:916 - START: If>kk>1000
1/10/2009 15:04:42:936 - END: EndIf
1/10/2009 15:04:42:946 - START: Wait>0.01
1/10/2009 15:04:42:967 - END: Wait>0.01
1/10/2009 15:04:42:977 - START: Goto>Loop
1/10/2009 15:04:42:977 - END: Label>Loop
1/10/2009 15:04:42:987 - START: Add>kk,1
1/10/2009 15:04:42:997 - END: Add>kk,1
1/10/2009 15:04:43:007 - START: If>kk>1000
1/10/2009 15:04:43:017 - END: EndIf
1/10/2009 15:04:43:027 - START: Wait>0.01
1/10/2009 15:04:43:047 - END: Wait>0.01
1/10/2009 15:04:43:057 - START: Goto>Loop
1/10/2009 15:04:43:057 - END: Label>Loop
1/10/2009 15:04:43:067 - START: Add>kk,1
1/10/2009 15:04:43:077 - END: Add>kk,1
1/10/2009 15:04:43:087 - START: If>kk>1000
1/10/2009 15:04:43:087 - END: EndIf
1/10/2009 15:04:43:087 - START: Wait>0.01
1/10/2009 15:04:43:097 - END: Wait>0.01
1/10/2009 15:04:43:097 - START: Goto>Loop
1/10/2009 15:04:43:107 - END: Label>Loop
1/10/2009 15:04:43:107 - START: Add>kk,1
1/10/2009 15:04:43:117 - END: Add>kk,1
1/10/2009 15:04:43:117 - START: If>kk>1000
1/10/2009 15:04:43:127 - END: EndIf
1/10/2009 15:04:43:127 - START: Wait>0.01
1/10/2009 15:04:43:147 - END: Wait>0.01
1/10/2009 15:04:43:147 - START: Goto>Loop
1/10/2009 15:04:43:157 - END: Label>Loop
1/10/2009 15:04:43:157 - START: Add>kk,1
1/10/2009 15:04:43:167 - END: Add>kk,1
1/10/2009 15:04:43:167 - START: If>kk>1000
1/10/2009 15:04:43:177 - END: EndIf
1/10/2009 15:04:43:177 - START: Wait>0.01
1/10/2009 15:04:43:197 - END: Wait>0.01
1/10/2009 15:04:43:238 - START: Goto>Loop
1/10/2009 15:04:43:248 - END: Label>Loop
1/10/2009 15:04:43:248 - START: Add>kk,1
1/10/2009 15:04:43:258 - END: Add>kk,1
1/10/2009 15:04:43:268 - START: If>kk>1000
1/10/2009 15:04:43:268 - END: EndIf
1/10/2009 15:04:43:268 - START: Wait>0.01
1/10/2009 15:04:43:288 - END: Wait>0.01
1/10/2009 15:04:43:298 - START: Goto>Loop
1/10/2009 15:04:43:308 - END: Label>Loop
1/10/2009 15:04:43:308 - START: Add>kk,1
1/10/2009 15:04:43:318 - END: Add>kk,1
1/10/2009 15:04:43:328 - START: If>kk>1000
1/10/2009 15:04:43:338 - END: EndIf
1/10/2009 15:04:43:348 - START: Wait>0.01
1/10/2009 15:04:43:358 - END: Wait>0.01
1/10/2009 15:04:43:368 - START: Goto>Loop
1/10/2009 15:04:43:368 - END: Label>Loop
1/10/2009 15:04:43:378 - START: Add>kk,1
1/10/2009 15:04:43:388 - END: Add>kk,1
1/10/2009 15:04:43:398 - START: If>kk>1000
1/10/2009 15:04:43:398 - END: EndIf
1/10/2009 15:04:43:408 - START: Wait>0.01
1/10/2009 15:04:43:428 - END: Wait>0.01
1/10/2009 15:04:43:438 - START: Goto>Loop
1/10/2009 15:04:43:438 - END: Label>Loop
1/10/2009 15:04:43:448 - START: Add>kk,1
1/10/2009 15:04:43:458 - END: Add>kk,1
1/10/2009 15:04:43:469 - START: If>kk>1000
1/10/2009 15:04:43:479 - END: EndIf
1/10/2009 15:04:43:479 - START: Wait>0.01
1/10/2009 15:04:43:499 - END: Wait>0.01
1/10/2009 15:04:43:499 - START: Goto>Loop
1/10/2009 15:04:43:509 - END: Label>Loop
1/10/2009 15:04:43:519 - START: Add>kk,1
1/10/2009 15:04:43:529 - END: Add>kk,1
1/10/2009 15:04:43:529 - START: If>kk>1000
1/10/2009 15:04:43:539 - END: EndIf
1/10/2009 15:04:43:549 - START: Wait>0.01
1/10/2009 15:04:43:569 - END: Wait>0.01
1/10/2009 15:04:43:579 - START: Goto>Loop
1/10/2009 15:04:43:589 - END: Label>Loop
1/10/2009 15:04:43:589 - START: Add>kk,1
1/10/2009 15:04:43:589 - END: Add>kk,1
1/10/2009 15:04:43:589 - START: If>kk>1000
1/10/2009 15:04:43:589 - END: EndIf
1/10/2009 15:04:43:589 - START: Wait>0.01
1/10/2009 15:04:43:599 - END: Wait>0.01
1/10/2009 15:04:43:599 - START: Goto>Loop
1/10/2009 15:04:43:609 - END: Label>Loop
1/10/2009 15:04:43:609 - START: Add>kk,1
1/10/2009 15:04:43:619 - END: Add>kk,1
1/10/2009 15:04:43:619 - START: If>kk>1000
1/10/2009 15:04:43:629 - END: EndIf
1/10/2009 15:04:43:629 - START: Wait>0.01
1/10/2009 15:04:43:649 - END: Wait>0.01
1/10/2009 15:04:43:649 - START: Goto>Loop
1/10/2009 15:04:43:659 - END: Label>Loop
1/10/2009 15:04:43:659 - START: Add>kk,1
1/10/2009 15:04:43:669 - END: Add>kk,1
1/10/2009 15:04:43:669 - START: If>kk>1000
1/10/2009 15:04:43:679 - END: EndIf
1/10/2009 15:04:43:679 - START: Wait>0.01
1/10/2009 15:04:43:699 - END: Wait>0.01
1/10/2009 15:04:43:709 - START: Goto>Loop
1/10/2009 15:04:43:720 - END: Label>Loop
1/10/2009 15:04:43:720 - START: Add>kk,1
1/10/2009 15:04:43:730 - END: Add>kk,1
1/10/2009 15:04:43:730 - START: If>kk>1000
1/10/2009 15:04:43:740 - END: EndIf
1/10/2009 15:04:43:750 - START: Wait>0.01
1/10/2009 15:04:43:760 - END: Wait>0.01
1/10/2009 15:04:43:760 - START: Goto>Loop
1/10/2009 15:04:43:770 - END: Label>Loop
1/10/2009 15:04:43:770 - START: Add>kk,1
1/10/2009 15:04:43:780 - END: Add>kk,1
1/10/2009 15:04:43:780 - START: If>kk>1000
1/10/2009 15:04:43:790 - END: EndIf
1/10/2009 15:04:43:810 - START: Wait>0.01
1/10/2009 15:04:43:850 - END: Wait>0.01
1/10/2009 15:04:43:880 - START: Goto>Loop
1/10/2009 15:04:43:880 - END: Label>Loop
1/10/2009 15:04:43:880 - START: Add>kk,1
1/10/2009 15:04:43:880 - END: Add>kk,1
1/10/2009 15:04:43:890 - START: If>kk>1000
1/10/2009 15:04:43:900 - END: EndIf
1/10/2009 15:04:43:910 - START: Wait>0.01
1/10/2009 15:04:43:930 - END: Wait>0.01
1/10/2009 15:04:43:930 - START: Goto>Loop
1/10/2009 15:04:43:950 - END: Label>Loop
1/10/2009 15:04:43:960 - START: Add>kk,1
1/10/2009 15:04:43:971 - END: Add>kk,1
1/10/2009 15:04:43:981 - START: If>kk>1000
1/10/2009 15:04:43:991 - END: EndIf
1/10/2009 15:04:43:991 - START: Wait>0.01
1/10/2009 15:04:44:011 - END: Wait>0.01
1/10/2009 15:04:44:021 - START: Goto>Loop
1/10/2009 15:04:44:031 - END: Label>Loop
1/10/2009 15:04:44:041 - START: Add>kk,1
1/10/2009 15:04:44:051 - END: Add>kk,1
1/10/2009 15:04:44:061 - START: If>kk>1000
1/10/2009 15:04:44:061 - END: EndIf
1/10/2009 15:04:44:071 - START: Wait>0.01
1/10/2009 15:04:44:091 - END: Wait>0.01
1/10/2009 15:04:44:091 - START: Goto>Loop
1/10/2009 15:04:44:101 - END: Label>Loop
1/10/2009 15:04:44:111 - START: Add>kk,1
1/10/2009 15:04:44:121 - END: Add>kk,1
1/10/2009 15:04:44:121 - START: If>kk>1000
1/10/2009 15:04:44:131 - END: EndIf
1/10/2009 15:04:44:141 - START: Wait>0.01
1/10/2009 15:04:44:161 - END: Wait>0.01
1/10/2009 15:04:44:171 - START: Goto>Loop
1/10/2009 15:04:44:181 - END: Label>Loop
1/10/2009 15:04:44:191 - START: Add>kk,1
1/10/2009 15:04:44:191 - END: Add>kk,1
1/10/2009 15:04:44:201 - START: If>kk>1000
1/10/2009 15:04:44:211 - END: EndIf
1/10/2009 15:04:44:221 - START: Wait>0.01
1/10/2009 15:04:44:242 - END: Wait>0.01
1/10/2009 15:04:44:252 - START: Goto>Loop
1/10/2009 15:04:44:262 - END: Label>Loop
1/10/2009 15:04:44:262 - START: Add>kk,1
1/10/2009 15:04:44:262 - END: Add>kk,1
1/10/2009 15:04:44:262 - START: If>kk>1000
1/10/2009 15:04:44:262 - END: EndIf
1/10/2009 15:04:44:262 - START: Wait>0.01
1/10/2009 15:04:44:272 - END: Wait>0.01
1/10/2009 15:04:44:272 - START: Goto>Loop
1/10/2009 15:04:44:282 - END: Label>Loop
1/10/2009 15:04:44:282 - START: Add>kk,1
1/10/2009 15:04:44:292 - END: Add>kk,1
1/10/2009 15:04:44:292 - START: If>kk>1000
1/10/2009 15:04:44:302 - END: EndIf
1/10/2009 15:04:44:302 - START: Wait>0.01
1/10/2009 15:04:44:322 - END: Wait>0.01
1/10/2009 15:04:44:322 - START: Goto>Loop
1/10/2009 15:04:44:332 - END: Label>Loop
1/10/2009 15:04:44:332 - START: Add>kk,1
1/10/2009 15:04:44:342 - END: Add>kk,1
1/10/2009 15:04:44:342 - START: If>kk>1000
1/10/2009 15:04:44:352 - END: EndIf
1/10/2009 15:04:44:362 - START: Wait>0.01
1/10/2009 15:04:44:372 - END: Wait>0.01
1/10/2009 15:04:44:392 - START: Goto>Loop
1/10/2009 15:04:44:402 - END: Label>Loop
1/10/2009 15:04:44:412 - START: Add>kk,1
1/10/2009 15:04:44:422 - END: Add>kk,1
1/10/2009 15:04:44:432 - START: If>kk>1000
1/10/2009 15:04:44:442 - END: EndIf
1/10/2009 15:04:44:442 - START: Wait>0.01
1/10/2009 15:04:44:462 - END: Wait>0.01
1/10/2009 15:04:44:483 - START: Goto>Loop
1/10/2009 15:04:44:493 - END: Label>Loop
1/10/2009 15:04:44:503 - START: Add>kk,1
1/10/2009 15:04:44:503 - END: Add>kk,1
1/10/2009 15:04:44:513 - START: If>kk>1000
1/10/2009 15:04:44:523 - END: EndIf
1/10/2009 15:04:44:533 - START: Wait>0.01
1/10/2009 15:04:44:553 - END: Wait>0.01
1/10/2009 15:04:44:553 - START: Goto>Loop
1/10/2009 15:04:44:563 - END: Label>Loop
1/10/2009 15:04:44:573 - START: Add>kk,1
1/10/2009 15:04:44:583 - END: Add>kk,1
1/10/2009 15:04:44:593 - START: If>kk>1000
1/10/2009 15:04:44:603 - END: EndIf
1/10/2009 15:04:44:613 - START: Wait>0.01
1/10/2009 15:04:44:623 - END: Wait>0.01
1/10/2009 15:04:44:623 - START: Goto>Loop
1/10/2009 15:04:44:633 - END: Label>Loop
1/10/2009 15:04:44:643 - START: Add>kk,1
1/10/2009 15:04:44:653 - END: Add>kk,1
1/10/2009 15:04:44:663 - START: If>kk>1000
1/10/2009 15:04:44:663 - END: EndIf
1/10/2009 15:04:44:673 - START: Wait>0.01
1/10/2009 15:04:44:693 - END: Wait>0.01
1/10/2009 15:04:44:703 - START: Goto>Loop
1/10/2009 15:04:44:703 - END: Label>Loop
1/10/2009 15:04:44:713 - START: Add>kk,1
1/10/2009 15:04:44:723 - END: Add>kk,1
1/10/2009 15:04:44:734 - START: If>kk>1000
1/10/2009 15:04:44:744 - END: EndIf
1/10/2009 15:04:44:754 - START: Wait>0.01
1/10/2009 15:04:44:764 - END: Wait>0.01
1/10/2009 15:04:44:764 - START: Goto>Loop
1/10/2009 15:04:44:764 - END: Label>Loop
1/10/2009 15:04:44:764 - START: Add>kk,1
1/10/2009 15:04:44:764 - END: Add>kk,1
1/10/2009 15:04:44:764 - START: If>kk>1000
1/10/2009 15:04:44:764 - END: EndIf
1/10/2009 15:04:44:764 - START: Wait>0.01
1/10/2009 15:04:44:774 - END: Wait>0.01
1/10/2009 15:04:44:774 - START: Goto>Loop
1/10/2009 15:04:44:784 - END: Label>Loop
1/10/2009 15:04:44:784 - START: Add>kk,1
1/10/2009 15:04:44:794 - END: Add>kk,1
1/10/2009 15:04:44:794 - START: If>kk>1000
1/10/2009 15:04:44:804 - END: EndIf
1/10/2009 15:04:44:814 - START: Wait>0.01
1/10/2009 15:04:44:824 - END: Wait>0.01
1/10/2009 15:04:44:824 - START: Goto>Loop
1/10/2009 15:04:44:834 - END: Label>Loop
1/10/2009 15:04:44:834 - START: Add>kk,1
1/10/2009 15:04:44:844 - END: Add>kk,1
1/10/2009 15:04:44:844 - START: If>kk>1000
1/10/2009 15:04:44:854 - END: EndIf
1/10/2009 15:04:44:854 - START: Wait>0.01
1/10/2009 15:04:44:874 - END: Wait>0.01
1/10/2009 15:04:44:874 - START: Goto>Loop
1/10/2009 15:04:44:884 - END: Label>Loop
1/10/2009 15:04:44:884 - START: Add>kk,1
1/10/2009 15:04:44:894 - END: Add>kk,1
1/10/2009 15:04:44:904 - START: If>kk>1000
1/10/2009 15:04:44:904 - END: EndIf
1/10/2009 15:04:44:914 - START: Wait>0.01
1/10/2009 15:04:44:924 - END: Wait>0.01
1/10/2009 15:04:44:924 - START: Goto>Loop
1/10/2009 15:04:44:934 - END: Label>Loop
1/10/2009 15:04:44:934 - START: Add>kk,1
1/10/2009 15:04:44:944 - END: Add>kk,1
1/10/2009 15:04:44:944 - START: If>kk>1000
1/10/2009 15:04:44:954 - END: EndIf
1/10/2009 15:04:44:964 - START: Wait>0.01
1/10/2009 15:04:44:974 - END: Wait>0.01
1/10/2009 15:04:45:015 - START: Goto>Loop
1/10/2009 15:04:45:025 - END: Label>Loop
1/10/2009 15:04:45:045 - START: Add>kk,1
1/10/2009 15:04:45:045 - END: Add>kk,1
1/10/2009 15:04:45:055 - START: If>kk>1000
1/10/2009 15:04:45:065 - END: EndIf
1/10/2009 15:04:45:075 - START: Wait>0.01
1/10/2009 15:04:45:095 - END: Wait>0.01
1/10/2009 15:04:45:105 - START: Goto>Loop
1/10/2009 15:04:45:105 - END: Label>Loop
1/10/2009 15:04:45:115 - START: Add>kk,1
1/10/2009 15:04:45:125 - END: Add>kk,1
1/10/2009 15:04:45:135 - START: If>kk>1000
1/10/2009 15:04:45:145 - END: EndIf
1/10/2009 15:04:45:145 - START: Wait>0.01
1/10/2009 15:04:45:165 - END: Wait>0.01
1/10/2009 15:04:45:165 - START: Goto>Loop
1/10/2009 15:04:45:175 - END: Label>Loop
1/10/2009 15:04:45:185 - START: Add>kk,1
1/10/2009 15:04:45:195 - END: Add>kk,1
1/10/2009 15:04:45:205 - START: If>kk>1000
1/10/2009 15:04:45:215 - END: EndIf
1/10/2009 15:04:45:215 - START: Wait>0.01
1/10/2009 15:04:45:235 - END: Wait>0.01
1/10/2009 15:04:45:235 - START: Goto>Loop
1/10/2009 15:04:45:246 - END: Label>Loop
1/10/2009 15:04:45:256 - START: Add>kk,1
1/10/2009 15:04:45:266 - END: Add>kk,1
1/10/2009 15:04:45:276 - START: If>kk>1000
1/10/2009 15:04:45:276 - END: EndIf
1/10/2009 15:04:45:286 - START: Wait>0.01
1/10/2009 15:04:45:306 - END: Wait>0.01
1/10/2009 15:04:45:316 - START: Goto>Loop
1/10/2009 15:04:45:316 - END: Label>Loop
1/10/2009 15:04:45:326 - START: Add>kk,1
1/10/2009 15:04:45:336 - END: Add>kk,1
1/10/2009 15:04:45:346 - START: If>kk>1000
1/10/2009 15:04:45:356 - END: EndIf
1/10/2009 15:04:45:356 - START: Wait>0.01
1/10/2009 15:04:45:366 - END: Wait>0.01
1/10/2009 15:04:45:366 - START: Goto>Loop
1/10/2009 15:04:45:376 - END: Label>Loop
1/10/2009 15:04:45:376 - START: Add>kk,1
1/10/2009 15:04:45:386 - END: Add>kk,1
1/10/2009 15:04:45:396 - START: If>kk>1000
1/10/2009 15:04:45:396 - END: EndIf
1/10/2009 15:04:45:406 - START: Wait>0.01
1/10/2009 15:04:45:416 - END: Wait>0.01
1/10/2009 15:04:45:416 - START: Goto>Loop
1/10/2009 15:04:45:426 - END: Label>Loop
1/10/2009 15:04:45:426 - START: Add>kk,1
1/10/2009 15:04:45:436 - END: Add>kk,1
1/10/2009 15:04:45:436 - START: If>kk>1000
1/10/2009 15:04:45:446 - END: EndIf
1/10/2009 15:04:45:446 - START: Wait>0.01
1/10/2009 15:04:45:466 - END: Wait>0.01
1/10/2009 15:04:45:507 - START: Goto>Loop
1/10/2009 15:04:45:517 - END: Label>Loop
1/10/2009 15:04:45:527 - START: Add>kk,1
1/10/2009 15:04:45:537 - END: Add>kk,1
1/10/2009 15:04:45:537 - START: If>kk>1000
1/10/2009 15:04:45:547 - END: EndIf
1/10/2009 15:04:45:547 - START: Wait>0.01
1/10/2009 15:04:45:557 - END: Wait>0.01
1/10/2009 15:04:45:577 - START: Goto>Loop
1/10/2009 15:04:45:577 - END: Label>Loop
1/10/2009 15:04:45:577 - START: Add>kk,1
1/10/2009 15:04:45:587 - END: Add>kk,1
1/10/2009 15:04:45:597 - START: If>kk>1000
1/10/2009 15:04:45:607 - END: EndIf
1/10/2009 15:04:45:617 - START: Wait>0.01
1/10/2009 15:04:45:637 - END: Wait>0.01
1/10/2009 15:04:45:647 - START: Goto>Loop
1/10/2009 15:04:45:657 - END: Label>Loop
1/10/2009 15:04:45:667 - START: Add>kk,1
1/10/2009 15:04:45:677 - END: Add>kk,1
1/10/2009 15:04:45:687 - START: If>kk>1000
1/10/2009 15:04:45:697 - END: EndIf
1/10/2009 15:04:45:707 - START: Wait>0.01
1/10/2009 15:04:45:717 - END: Wait>0.01
1/10/2009 15:04:45:727 - START: Goto>Loop
1/10/2009 15:04:45:727 - END: Label>Loop
1/10/2009 15:04:45:737 - START: Add>kk,1
1/10/2009 15:04:45:747 - END: Add>kk,1
1/10/2009 15:04:45:758 - START: If>kk>1000
1/10/2009 15:04:45:768 - END: EndIf
1/10/2009 15:04:45:768 - START: Wait>0.01
1/10/2009 15:04:45:788 - END: Wait>0.01
1/10/2009 15:04:45:798 - START: Goto>Loop
1/10/2009 15:04:45:798 - END: Label>Loop
1/10/2009 15:04:45:808 - START: Add>kk,1
1/10/2009 15:04:45:818 - END: Add>kk,1
1/10/2009 15:04:45:828 - START: If>kk>1000
1/10/2009 15:04:45:838 - END: EndIf
1/10/2009 15:04:45:848 - START: Wait>0.01
1/10/2009 15:04:45:868 - END: Wait>0.01
1/10/2009 15:04:45:878 - START: Goto>Loop
1/10/2009 15:04:45:888 - END: Label>Loop
1/10/2009 15:04:45:898 - START: Add>kk,1
1/10/2009 15:04:45:908 - END: Add>kk,1
1/10/2009 15:04:45:908 - START: If>kk>1000
1/10/2009 15:04:45:918 - END: EndIf
1/10/2009 15:04:45:928 - START: Wait>0.01
1/10/2009 15:04:45:938 - END: Wait>0.01
1/10/2009 15:04:45:938 - START: Goto>Loop
1/10/2009 15:04:45:948 - END: Label>Loop
1/10/2009 15:04:45:948 - START: Add>kk,1
1/10/2009 15:04:45:958 - END: Add>kk,1
1/10/2009 15:04:45:958 - START: If>kk>1000
1/10/2009 15:04:45:968 - END: EndIf
1/10/2009 15:04:45:968 - START: Wait>0.01
1/10/2009 15:04:45:988 - END: Wait>0.01
1/10/2009 15:04:45:988 - START: Goto>Loop
1/10/2009 15:04:45:998 - END: Label>Loop
1/10/2009 15:04:45:998 - START: Add>kk,1
1/10/2009 15:04:46:009 - END: Add>kk,1
1/10/2009 15:04:46:009 - START: If>kk>1000
1/10/2009 15:04:46:019 - END: EndIf
1/10/2009 15:04:46:019 - START: Wait>0.01
1/10/2009 15:04:46:059 - END: Wait>0.01
1/10/2009 15:04:46:099 - START: Goto>Loop
1/10/2009 15:04:46:139 - END: Label>Loop
1/10/2009 15:04:46:159 - START: Add>kk,1
1/10/2009 15:04:46:159 - END: Add>kk,1
1/10/2009 15:04:46:159 - START: If>kk>1000
1/10/2009 15:04:46:159 - END: EndIf
1/10/2009 15:04:46:159 - START: Wait>0.01
1/10/2009 15:04:46:169 - END: Wait>0.01
1/10/2009 15:04:46:179 - START: Goto>Loop
1/10/2009 15:04:46:199 - END: Label>Loop
1/10/2009 15:04:46:219 - START: Add>kk,1
1/10/2009 15:04:46:229 - END: Add>kk,1
1/10/2009 15:04:46:229 - START: If>kk>1000
1/10/2009 15:04:46:239 - END: EndIf
1/10/2009 15:04:46:239 - START: Wait>0.01
1/10/2009 15:04:46:249 - END: Wait>0.01
1/10/2009 15:04:46:249 - START: Goto>Loop
1/10/2009 15:04:46:249 - END: Label>Loop
1/10/2009 15:04:46:259 - START: Add>kk,1
1/10/2009 15:04:46:259 - END: Add>kk,1
1/10/2009 15:04:46:259 - START: If>kk>1000
1/10/2009 15:04:46:270 - END: EndIf
1/10/2009 15:04:46:270 - START: Wait>0.01
1/10/2009 15:04:46:290 - END: Wait>0.01
1/10/2009 15:04:46:290 - START: Goto>Loop
1/10/2009 15:04:46:290 - END: Label>Loop
1/10/2009 15:04:46:300 - START: Add>kk,1
1/10/2009 15:04:46:300 - END: Add>kk,1
1/10/2009 15:04:46:310 - START: If>kk>1000
1/10/2009 15:04:46:310 - END: EndIf
1/10/2009 15:04:46:310 - START: Wait>0.01
1/10/2009 15:04:46:330 - END: Wait>0.01
1/10/2009 15:04:46:330 - START: Goto>Loop
1/10/2009 15:04:46:330 - END: Label>Loop
1/10/2009 15:04:46:340 - START: Add>kk,1
1/10/2009 15:04:46:340 - END: Add>kk,1
1/10/2009 15:04:46:350 - START: If>kk>1000
1/10/2009 15:04:46:350 - END: EndIf
1/10/2009 15:04:46:360 - START: Wait>0.01
1/10/2009 15:04:46:370 - END: Wait>0.01
1/10/2009 15:04:46:370 - START: Goto>Loop
1/10/2009 15:04:46:370 - END: Label>Loop
1/10/2009 15:04:46:380 - START: Add>kk,1
1/10/2009 15:04:46:380 - END: Add>kk,1
1/10/2009 15:04:46:390 - START: If>kk>1000
1/10/2009 15:04:46:390 - END: EndIf
1/10/2009 15:04:46:390 - START: Wait>0.01
1/10/2009 15:04:46:410 - END: Wait>0.01
1/10/2009 15:04:46:410 - START: Goto>Loop
1/10/2009 15:04:46:410 - END: Label>Loop
1/10/2009 15:04:46:420 - START: Add>kk,1
1/10/2009 15:04:46:460 - END: Add>kk,1
1/10/2009 15:04:46:490 - START: If>kk>1000
1/10/2009 15:04:46:561 - END: EndIf
1/10/2009 15:04:46:561 - START: Wait>0.01
1/10/2009 15:04:46:581 - END: Wait>0.01
1/10/2009 15:04:46:611 - START: Goto>Loop
1/10/2009 15:04:46:651 - END: Label>Loop
1/10/2009 15:04:46:681 - START: Add>kk,1
1/10/2009 15:04:46:691 - END: Add>kk,1
1/10/2009 15:04:46:701 - START: If>kk>1000
1/10/2009 15:04:46:711 - END: EndIf
1/10/2009 15:04:46:711 - START: Wait>0.01
1/10/2009 15:04:46:731 - END: Wait>0.01
1/10/2009 15:04:46:741 - START: Goto>Loop
1/10/2009 15:04:46:741 - END: Label>Loop
1/10/2009 15:04:46:751 - START: Add>kk,1
1/10/2009 15:04:46:761 - END: Add>kk,1
1/10/2009 15:04:46:772 - START: If>kk>1000
1/10/2009 15:04:46:782 - END: EndIf
1/10/2009 15:04:46:792 - START: Wait>0.01
1/10/2009 15:04:46:812 - END: Wait>0.01
1/10/2009 15:04:46:822 - START: Goto>Loop
1/10/2009 15:04:46:822 - END: Label>Loop
1/10/2009 15:04:46:832 - START: Add>kk,1
1/10/2009 15:04:46:842 - END: Add>kk,1
1/10/2009 15:04:46:852 - START: If>kk>1000
1/10/2009 15:04:46:862 - END: EndIf
1/10/2009 15:04:46:872 - START: Wait>0.01
1/10/2009 15:04:46:892 - END: Wait>0.01
1/10/2009 15:04:46:902 - START: Goto>Loop
1/10/2009 15:04:46:912 - END: Label>Loop
1/10/2009 15:04:46:922 - START: Add>kk,1
1/10/2009 15:04:46:932 - END: Add>kk,1
1/10/2009 15:04:46:932 - START: If>kk>1000
1/10/2009 15:04:46:942 - END: EndIf
1/10/2009 15:04:46:952 - START: Wait>0.01
1/10/2009 15:04:46:962 - END: Wait>0.01
1/10/2009 15:04:46:962 - START: Goto>Loop
1/10/2009 15:04:46:972 - END: Label>Loop
1/10/2009 15:04:46:972 - START: Add>kk,1
1/10/2009 15:04:46:982 - END: Add>kk,1
1/10/2009 15:04:46:982 - START: If>kk>1000
1/10/2009 15:04:46:992 - END: EndIf
1/10/2009 15:04:47:002 - START: Wait>0.01
1/10/2009 15:04:47:012 - END: Wait>0.01
1/10/2009 15:04:47:012 - START: Goto>Loop
1/10/2009 15:04:47:022 - END: Label>Loop
1/10/2009 15:04:47:022 - START: Add>kk,1
1/10/2009 15:04:47:033 - END: Add>kk,1
1/10/2009 15:04:47:033 - START: If>kk>1000
1/10/2009 15:04:47:043 - END: EndIf
1/10/2009 15:04:47:053 - START: Wait>0.01
1/10/2009 15:04:47:063 - END: Wait>0.01
1/10/2009 15:04:47:063 - START: Goto>Loop
1/10/2009 15:04:47:093 - END: Label>Loop
1/10/2009 15:04:47:133 - START: Add>kk,1
1/10/2009 15:04:47:163 - END: Add>kk,1
1/10/2009 15:04:47:183 - START: If>kk>1000
1/10/2009 15:04:47:193 - END: EndIf
1/10/2009 15:04:47:203 - START: Wait>0.01
1/10/2009 15:04:47:223 - END: Wait>0.01
1/10/2009 15:04:47:233 - START: Goto>Loop
1/10/2009 15:04:47:243 - END: Label>Loop
1/10/2009 15:04:47:253 - START: Add>kk,1
1/10/2009 15:04:47:253 - END: Add>kk,1
1/10/2009 15:04:47:263 - START: If>kk>1000
1/10/2009 15:04:47:273 - END: EndIf
1/10/2009 15:04:47:284 - START: Wait>0.01
1/10/2009 15:04:47:304 - END: Wait>0.01
1/10/2009 15:04:47:314 - START: Goto>Loop
1/10/2009 15:04:47:324 - END: Label>Loop
1/10/2009 15:04:47:334 - START: Add>kk,1
1/10/2009 15:04:47:334 - END: Add>kk,1
1/10/2009 15:04:47:344 - START: If>kk>1000
1/10/2009 15:04:47:354 - END: EndIf
1/10/2009 15:04:47:364 - START: Wait>0.01
1/10/2009 15:04:47:384 - END: Wait>0.01
1/10/2009 15:04:47:394 - START: Goto>Loop
1/10/2009 15:04:47:394 - END: Label>Loop
1/10/2009 15:04:47:404 - START: Add>kk,1
1/10/2009 15:04:47:414 - END: Add>kk,1
1/10/2009 15:04:47:424 - START: If>kk>1000
1/10/2009 15:04:47:434 - END: EndIf
1/10/2009 15:04:47:444 - START: Wait>0.01
1/10/2009 15:04:47:454 - END: Wait>0.01
1/10/2009 15:04:47:454 - START: Goto>Loop
1/10/2009 15:04:47:464 - END: Label>Loop
1/10/2009 15:04:47:474 - START: Add>kk,1
1/10/2009 15:04:47:474 - END: Add>kk,1
1/10/2009 15:04:47:474 - START: If>kk>1000
1/10/2009 15:04:47:474 - END: EndIf
1/10/2009 15:04:47:474 - START: Wait>0.01
1/10/2009 15:04:47:484 - END: Wait>0.01
1/10/2009 15:04:47:484 - START: Goto>Loop
1/10/2009 15:04:47:494 - END: Label>Loop
1/10/2009 15:04:47:494 - START: Add>kk,1
1/10/2009 15:04:47:504 - END: Add>kk,1
1/10/2009 15:04:47:504 - START: If>kk>1000
1/10/2009 15:04:47:514 - END: EndIf
1/10/2009 15:04:47:514 - START: Wait>0.01
1/10/2009 15:04:47:534 - END: Wait>0.01
1/10/2009 15:04:47:534 - START: Goto>Loop
1/10/2009 15:04:47:545 - END: Label>Loop
1/10/2009 15:04:47:545 - START: Add>kk,1
1/10/2009 15:04:47:555 - END: Add>kk,1
1/10/2009 15:04:47:555 - START: If>kk>1000
1/10/2009 15:04:47:565 - END: EndIf
1/10/2009 15:04:47:565 - START: Wait>0.01
1/10/2009 15:04:47:585 - END: Wait>0.01
1/10/2009 15:04:47:585 - START: Goto>Loop
1/10/2009 15:04:47:595 - END: Label>Loop
1/10/2009 15:04:47:595 - START: Add>kk,1
1/10/2009 15:04:47:605 - END: Add>kk,1
1/10/2009 15:04:47:615 - START: If>kk>1000
1/10/2009 15:04:47:615 - END: EndIf
1/10/2009 15:04:47:625 - START: Wait>0.01
1/10/2009 15:04:47:635 - END: Wait>0.01
1/10/2009 15:04:47:645 - START: Goto>Loop
1/10/2009 15:04:47:645 - END: Label>Loop
1/10/2009 15:04:47:655 - START: Add>kk,1
1/10/2009 15:04:47:665 - END: Add>kk,1
1/10/2009 15:04:47:665 - START: If>kk>1000
1/10/2009 15:04:47:675 - END: EndIf
1/10/2009 15:04:47:675 - START: Wait>0.01
1/10/2009 15:04:47:695 - END: Wait>0.01
1/10/2009 15:04:47:695 - START: Goto>Loop
1/10/2009 15:04:47:705 - END: Label>Loop
1/10/2009 15:04:47:705 - START: Add>kk,1
1/10/2009 15:04:47:715 - END: Add>kk,1
1/10/2009 15:04:47:715 - START: If>kk>1000
1/10/2009 15:04:47:725 - END: EndIf
1/10/2009 15:04:47:735 - START: Wait>0.01
1/10/2009 15:04:47:745 - END: Wait>0.01
1/10/2009 15:04:47:745 - START: Goto>Loop
1/10/2009 15:04:47:755 - END: Label>Loop
1/10/2009 15:04:47:755 - START: Add>kk,1
1/10/2009 15:04:47:765 - END: Add>kk,1
1/10/2009 15:04:47:775 - START: If>kk>1000
1/10/2009 15:04:47:775 - END: EndIf
1/10/2009 15:04:47:785 - START: Wait>0.01
1/10/2009 15:04:47:796 - END: Wait>0.01
1/10/2009 15:04:47:836 - START: Goto>Loop
1/10/2009 15:04:47:836 - END: Label>Loop
1/10/2009 15:04:47:846 - START: Add>kk,1
1/10/2009 15:04:47:856 - END: Add>kk,1
1/10/2009 15:04:47:866 - START: If>kk>1000
1/10/2009 15:04:47:866 - END: EndIf
1/10/2009 15:04:47:866 - START: Wait>0.01
1/10/2009 15:04:47:876 - END: Wait>0.01
1/10/2009 15:04:47:876 - START: Goto>Loop
1/10/2009 15:04:47:886 - END: Label>Loop
1/10/2009 15:04:47:896 - START: Add>kk,1
1/10/2009 15:04:47:896 - END: Add>kk,1
1/10/2009 15:04:47:896 - START: If>kk>1000
1/10/2009 15:04:47:906 - END: EndIf
1/10/2009 15:04:47:916 - START: Wait>0.01
1/10/2009 15:04:47:936 - END: Wait>0.01
1/10/2009 15:04:47:966 - START: Goto>Loop
1/10/2009 15:04:47:966 - END: Label>Loop
1/10/2009 15:04:47:966 - START: Add>kk,1
1/10/2009 15:04:47:966 - END: Add>kk,1
1/10/2009 15:04:47:966 - START: If>kk>1000
1/10/2009 15:04:47:966 - END: EndIf
1/10/2009 15:04:47:976 - START: Wait>0.01
1/10/2009 15:04:47:996 - END: Wait>0.01
1/10/2009 15:04:47:996 - START: Goto>Loop
1/10/2009 15:04:47:996 - END: Label>Loop
1/10/2009 15:04:48:006 - START: Add>kk,1
1/10/2009 15:04:48:006 - END: Add>kk,1
1/10/2009 15:04:48:016 - START: If>kk>1000
1/10/2009 15:04:48:016 - END: EndIf
1/10/2009 15:04:48:026 - START: Wait>0.01
1/10/2009 15:04:48:036 - END: Wait>0.01
1/10/2009 15:04:48:036 - START: Goto>Loop
1/10/2009 15:04:48:036 - END: Label>Loop
1/10/2009 15:04:48:047 - START: Add>kk,1
1/10/2009 15:04:48:057 - END: Add>kk,1
1/10/2009 15:04:48:057 - START: If>kk>1000
1/10/2009 15:04:48:057 - END: EndIf
1/10/2009 15:04:48:067 - START: Wait>0.01
1/10/2009 15:04:48:077 - END: Wait>0.01
1/10/2009 15:04:48:077 - START: Goto>Loop
1/10/2009 15:04:48:087 - END: Label>Loop
1/10/2009 15:04:48:087 - START: Add>kk,1
1/10/2009 15:04:48:087 - END: Add>kk,1
1/10/2009 15:04:48:097 - START: If>kk>1000
1/10/2009 15:04:48:097 - END: EndIf
1/10/2009 15:04:48:107 - START: Wait>0.01
1/10/2009 15:04:48:117 - END: Wait>0.01
1/10/2009 15:04:48:117 - START: Goto>Loop
1/10/2009 15:04:48:117 - END: SRT>UserStop
1/10/2009 15:04:48:127 - START: Label>OtherReason
1/10/2009 15:04:48:127 - END: Label>OtherReason
1/10/2009 15:04:48:137 - START: Show>UserStopDialog,result
1/10/2009 15:04:50:657 - END: Show>UserStopDialog,result
1/10/2009 15:04:50:667 - START: //If other has been selected, the user must type why
1/10/2009 15:04:50:667 - END: //If other has been selected, the user must type why
1/10/2009 15:04:50:677 - START: If>UserStopDialog.Options.ItemIndex=5
1/10/2009 15:04:50:677 - END: If>UserStopDialog.Options.ItemIndex=5
1/10/2009 15:04:50:687 - START: If>UserStopDialog.OtherReason=Specify other reason here
1/10/2009 15:04:50:687 - END: If>UserStopDialog.OtherReason=Specify other reason here
1/10/2009 15:04:50:687 - START: MessageModal>Please specify other reason for manual stop.
1/10/2009 15:04:52:384 - END: MessageModal>Please specify other reason for manual stop.
1/10/2009 15:04:53:448 - START: Goto>OtherReason
1/10/2009 15:04:53:458 - END: Label>OtherReason
1/10/2009 15:04:53:468 - START: Show>UserStopDialog,result
1/10/2009 15:04:58:498 - END: Show>UserStopDialog,result
1/10/2009 15:04:58:508 - START: //If other has been selected, the user must type why
1/10/2009 15:04:58:518 - END: //If other has been selected, the user must type why
1/10/2009 15:04:58:518 - START: If>UserStopDialog.Options.ItemIndex=5
1/10/2009 15:04:58:528 - END: If>UserStopDialog.Options.ItemIndex=5
1/10/2009 15:04:58:528 - START: If>UserStopDialog.OtherReason=Specify other reason here
1/10/2009 15:04:58:538 - END: Else
1/10/2009 15:04:58:548 - START: MessageModal>I would write User Stop - Other Reason: Specify othe
1/10/2009 15:04:59:833 - END: MessageModal>I would write User Stop - Other Reason: Specify othe
1/10/2009 15:05:00:907 - START: EndIf
1/10/2009 15:05:00:927 - END: EndIf
1/10/2009 15:05:00:937 - START: Else
1/10/2009 15:05:00:947 - END: EndIf
1/10/2009 15:05:00:957 - START: MessageModal>I should be exiting
1/10/2009 15:05:01:961 - END: MessageModal>I should be exiting
1/10/2009 15:05:01:991 - START: //Exit>0
1/10/2009 15:05:02:001 - END: //Exit>0
1/10/2009 15:05:02:011 - START: END>UserStop
1/10/2009 15:05:02:021 - END: END>UserStop
1/10/2009 15:05:02:021 - START: Goto>Loop
1/10/2009 15:05:02:031 - END: Label>Loop
1/10/2009 15:05:02:041 - START: Add>kk,1
1/10/2009 15:05:02:051 - END: Add>kk,1
1/10/2009 15:05:02:062 - START: If>kk>1000
1/10/2009 15:05:02:072 - END: EndIf
1/10/2009 15:05:02:082 - START: Wait>0.01
1/10/2009 15:05:02:102 - END: Wait>0.01
1/10/2009 15:05:02:112 - START: Goto>Loop
1/10/2009 15:05:02:122 - END: Label>Loop
1/10/2009 15:05:02:132 - START: Add>kk,1
1/10/2009 15:05:02:142 - END: Add>kk,1
1/10/2009 15:05:02:152 - START: If>kk>1000
1/10/2009 15:05:02:162 - END: EndIf
1/10/2009 15:05:02:172 - START: Wait>0.01
1/10/2009 15:05:02:182 - END: Wait>0.01
1/10/2009 15:05:02:192 - START: Goto>Loop
1/10/2009 15:05:02:192 - END: Label>Loop
1/10/2009 15:05:02:202 - START: Add>kk,1
1/10/2009 15:05:02:202 - END: Add>kk,1
1/10/2009 15:05:02:202 - START: If>kk>1000
1/10/2009 15:05:02:202 - END: EndIf
1/10/2009 15:05:02:202 - START: Wait>0.01
1/10/2009 15:05:02:212 - END: Wait>0.01
1/10/2009 15:05:02:212 - START: Goto>Loop
1/10/2009 15:05:02:222 - END: Label>Loop
1/10/2009 15:05:02:222 - START: Add>kk,1
1/10/2009 15:05:02:232 - END: Add>kk,1
1/10/2009 15:05:02:232 - START: If>kk>1000
1/10/2009 15:05:02:242 - END: EndIf
1/10/2009 15:05:02:242 - START: Wait>0.01
1/10/2009 15:05:02:262 - END: Wait>0.01
1/10/2009 15:05:02:262 - START: Goto>Loop
1/10/2009 15:05:02:272 - END: Label>Loop
1/10/2009 15:05:02:272 - START: Add>kk,1
1/10/2009 15:05:02:282 - END: Add>kk,1
1/10/2009 15:05:02:282 - START: If>kk>1000
1/10/2009 15:05:02:292 - END: EndIf
1/10/2009 15:05:02:292 - START: Wait>0.01
1/10/2009 15:05:02:312 - END: Wait>0.01
1/10/2009 15:05:02:312 - START: Goto>Loop
1/10/2009 15:05:02:323 - END: Label>Loop
1/10/2009 15:05:02:323 - START: Add>kk,1
1/10/2009 15:05:02:333 - END: Add>kk,1
1/10/2009 15:05:02:333 - START: If>kk>1000
1/10/2009 15:05:02:343 - END: EndIf
1/10/2009 15:05:02:343 - START: Wait>0.01
1/10/2009 15:05:02:363 - END: Wait>0.01
1/10/2009 15:05:02:363 - START: Goto>Loop
1/10/2009 15:05:02:373 - END: Label>Loop
1/10/2009 15:05:02:373 - START: Add>kk,1
1/10/2009 15:05:02:383 - END: Add>kk,1
1/10/2009 15:05:02:383 - START: If>kk>1000
1/10/2009 15:05:02:393 - END: EndIf
1/10/2009 15:05:02:393 - START: Wait>0.01
1/10/2009 15:05:02:403 - END: Wait>0.01
1/10/2009 15:05:02:403 - START: Goto>Loop
1/10/2009 15:05:02:423 - END: Label>Loop
1/10/2009 15:05:02:453 - START: Add>kk,1
1/10/2009 15:05:02:473 - END: Add>kk,1
1/10/2009 15:05:02:493 - START: If>kk>1000
1/10/2009 15:05:02:523 - END: EndIf
1/10/2009 15:05:02:533 - START: Wait>0.01
1/10/2009 15:05:02:543 - END: Wait>0.01
1/10/2009 15:05:02:563 - START: Goto>Loop
1/10/2009 15:05:02:563 - END: Label>Loop
1/10/2009 15:05:02:563 - START: Add>kk,1
1/10/2009 15:05:02:574 - END: Add>kk,1
1/10/2009 15:05:02:584 - START: If>kk>1000
1/10/2009 15:05:02:594 - END: EndIf
1/10/2009 15:05:02:594 - START: Wait>0.01
1/10/2009 15:05:02:604 - END: Wait>0.01
1/10/2009 15:05:02:624 - START: Goto>Loop
1/10/2009 15:05:02:624 - END: Label>Loop
1/10/2009 15:05:02:634 - START: Add>kk,1
1/10/2009 15:05:02:644 - END: Add>kk,1
1/10/2009 15:05:02:644 - START: If>kk>1000
1/10/2009 15:05:02:644 - END: EndIf
1/10/2009 15:05:02:654 - START: Wait>0.01
1/10/2009 15:05:02:674 - END: Wait>0.01
1/10/2009 15:05:02:684 - START: Goto>Loop
1/10/2009 15:05:02:694 - END: Label>Loop
1/10/2009 15:05:02:704 - START: Add>kk,1
1/10/2009 15:05:02:704 - END: Add>kk,1
1/10/2009 15:05:02:714 - START: If>kk>1000
1/10/2009 15:05:02:724 - END: EndIf
1/10/2009 15:05:02:734 - START: Wait>0.01
1/10/2009 15:05:02:754 - END: Wait>0.01
1/10/2009 15:05:02:764 - START: Goto>Loop
1/10/2009 15:05:02:764 - END: Label>Loop
1/10/2009 15:05:02:774 - START: Add>kk,1
1/10/2009 15:05:02:784 - END: Add>kk,1
1/10/2009 15:05:02:794 - START: If>kk>1000
1/10/2009 15:05:02:804 - END: EndIf
1/10/2009 15:05:02:814 - START: Wait>0.01
1/10/2009 15:05:02:825 - END: Wait>0.01
1/10/2009 15:05:02:825 - START: Goto>Loop
1/10/2009 15:05:02:835 - END: Label>Loop
1/10/2009 15:05:02:845 - START: Add>kk,1
1/10/2009 15:05:02:855 - END: Add>kk,1
1/10/2009 15:05:02:865 - START: If>kk>1000
1/10/2009 15:05:02:875 - END: EndIf
1/10/2009 15:05:02:885 - START: Wait>0.01
1/10/2009 15:05:02:895 - END: Wait>0.01
1/10/2009 15:05:02:895 - START: Goto>Loop
1/10/2009 15:05:02:905 - END: Label>Loop
1/10/2009 15:05:02:915 - START: Add>kk,1
1/10/2009 15:05:02:925 - END: Add>kk,1
1/10/2009 15:05:02:935 - START: If>kk>1000
1/10/2009 15:05:02:935 - END: EndIf
1/10/2009 15:05:02:955 - START: Wait>0.01
1/10/2009 15:05:02:965 - END: Wait>0.01
1/10/2009 15:05:02:965 - START: Goto>Loop
1/10/2009 15:05:02:975 - END: Label>Loop
1/10/2009 15:05:02:975 - START: Add>kk,1
1/10/2009 15:05:02:985 - END: Add>kk,1
1/10/2009 15:05:02:995 - START: If>kk>1000
1/10/2009 15:05:02:995 - END: EndIf
1/10/2009 15:05:03:005 - START: Wait>0.01
1/10/2009 15:05:03:015 - END: Wait>0.01
1/10/2009 15:05:03:015 - START: Goto>Loop
1/10/2009 15:05:03:025 - END: Label>Loop
1/10/2009 15:05:03:025 - START: Add>kk,1
1/10/2009 15:05:03:035 - END: Add>kk,1
1/10/2009 15:05:03:035 - START: If>kk>1000
1/10/2009 15:05:03:045 - END: EndIf
1/10/2009 15:05:03:045 - START: Wait>0.01
1/10/2009 15:05:03:065 - END: Wait>0.01
1/10/2009 15:05:03:065 - START: Goto>Loop
1/10/2009 15:05:03:075 - END: Label>Loop
1/10/2009 15:05:03:075 - START: Add>kk,1
1/10/2009 15:05:03:086 - END: Add>kk,1
1/10/2009 15:05:03:086 - START: If>kk>1000
1/10/2009 15:05:03:096 - END: EndIf
1/10/2009 15:05:03:106 - START: Wait>0.01
1/10/2009 15:05:03:126 - END: Wait>0.01
1/10/2009 15:05:03:126 - START: Goto>Loop
1/10/2009 15:05:03:136 - END: Label>Loop
1/10/2009 15:05:03:136 - START: Add>kk,1
1/10/2009 15:05:03:146 - END: Add>kk,1
1/10/2009 15:05:03:146 - START: If>kk>1000
1/10/2009 15:05:03:156 - END: EndIf
1/10/2009 15:05:03:156 - START: Wait>0.01
1/10/2009 15:05:03:196 - END: Wait>0.01
1/10/2009 15:05:03:226 - START: Goto>Loop
1/10/2009 15:05:03:226 - END: Label>Loop
1/10/2009 15:05:03:226 - START: Add>kk,1
1/10/2009 15:05:03:256 - END: Add>kk,1
1/10/2009 15:05:03:266 - START: If>kk>1000
1/10/2009 15:05:03:276 - END: EndIf
1/10/2009 15:05:03:286 - START: Wait>0.01
1/10/2009 15:05:03:296 - END: Wait>0.01
1/10/2009 15:05:03:316 - START: Goto>Loop
1/10/2009 15:05:03:316 - END: Label>Loop
1/10/2009 15:05:03:316 - START: Add>kk,1
1/10/2009 15:05:03:326 - END: Add>kk,1
1/10/2009 15:05:03:326 - START: If>kk>1000
1/10/2009 15:05:03:337 - END: EndIf
1/10/2009 15:05:03:347 - START: Wait>0.01
1/10/2009 15:05:03:367 - END: Wait>0.01
1/10/2009 15:05:03:377 - START: Goto>Loop
1/10/2009 15:05:03:387 - END: Label>Loop
1/10/2009 15:05:03:387 - START: Add>kk,1
1/10/2009 15:05:03:397 - END: Add>kk,1
1/10/2009 15:05:03:407 - START: If>kk>1000
1/10/2009 15:05:03:417 - END: EndIf
1/10/2009 15:05:03:427 - START: Wait>0.01
1/10/2009 15:05:03:447 - END: Wait>0.01
1/10/2009 15:05:03:457 - START: Goto>Loop
1/10/2009 15:05:03:467 - END: Label>Loop
1/10/2009 15:05:03:477 - START: Add>kk,1
1/10/2009 15:05:03:487 - END: Add>kk,1
1/10/2009 15:05:03:497 - START: If>kk>1000
1/10/2009 15:05:03:507 - END: EndIf
1/10/2009 15:05:03:507 - START: Wait>0.01
1/10/2009 15:05:03:527 - END: Wait>0.01
1/10/2009 15:05:03:537 - START: Goto>Loop
1/10/2009 15:05:03:537 - END: Label>Loop
1/10/2009 15:05:03:547 - START: Add>kk,1
1/10/2009 15:05:03:557 - END: Add>kk,1
1/10/2009 15:05:03:567 - START: If>kk>1000
1/10/2009 15:05:03:577 - END: EndIf
1/10/2009 15:05:03:587 - START: Wait>0.01
1/10/2009 15:05:03:608 - END: Wait>0.01
1/10/2009 15:05:03:618 - START: Goto>Loop
1/10/2009 15:05:03:628 - END: Label>Loop
1/10/2009 15:05:21:488 - START: Add>kk,1
1/10/2009 15:05:21:488 - END: Add>kk,1
1/10/2009 15:05:21:488 - START: If>kk>1000
1/10/2009 15:05:21:488 - END: EndIf
1/10/2009 15:05:21:488 - START: Wait>0.01
1/10/2009 15:05:21:498 - END: Wait>0.01
1/10/2009 15:05:21:508 - START: Goto>Loop
1/10/2009 15:05:21:518 - END: Label>Loop
1/10/2009 15:05:21:518 - START: Add>kk,1
1/10/2009 15:05:21:528 - END: Add>kk,1
1/10/2009 15:05:21:538 - START: If>kk>1000
1/10/2009 15:05:21:548 - END: EndIf
1/10/2009 15:05:21:558 - START: Wait>0.01
1/10/2009 15:05:21:588 - END: Wait>0.01
1/10/2009 15:05:21:618 - START: Goto>Loop
1/10/2009 15:05:21:648 - END: Label>Loop
1/10/2009 15:05:21:658 - START: Add>kk,1
1/10/2009 15:05:21:658 - END: Add>kk,1
1/10/2009 15:05:21:658 - START: If>kk>1000
1/10/2009 15:05:21:668 - END: EndIf
1/10/2009 15:05:21:678 - START: Wait>0.01
1/10/2009 15:05:21:699 - END: Wait>0.01
1/10/2009 15:05:21:719 - START: Goto>Loop
1/10/2009 15:05:21:719 - END: Label>Loop
1/10/2009 15:05:21:729 - START: Add>kk,1
1/10/2009 15:05:21:729 - END: Add>kk,1
1/10/2009 15:05:21:739 - START: If>kk>1000
1/10/2009 15:05:21:749 - END: EndIf
1/10/2009 15:05:21:759 - START: Wait>0.01
1/10/2009 15:05:21:769 - END: Wait>0.01
1/10/2009 15:05:21:799 - START: Goto>Loop
1/10/2009 15:05:21:809 - END: Label>Loop
1/10/2009 15:05:21:809 - START: Add>kk,1
1/10/2009 15:05:21:819 - END: Add>kk,1
1/10/2009 15:05:21:829 - START: If>kk>1000
1/10/2009 15:05:21:839 - END: EndIf
1/10/2009 15:05:21:849 - START: Wait>0.01
1/10/2009 15:05:21:859 - END: Wait>0.01
1/10/2009 15:05:21:859 - START: Goto>Loop
1/10/2009 15:05:21:869 - END: Label>Loop
1/10/2009 15:05:21:879 - START: Add>kk,1
1/10/2009 15:05:21:889 - END: Add>kk,1
1/10/2009 15:05:21:889 - START: If>kk>1000
1/10/2009 15:05:21:899 - END: EndIf
1/10/2009 15:05:21:909 - START: Wait>0.01
1/10/2009 15:05:21:929 - END: Wait>0.01
1/10/2009 15:05:21:940 - START: Goto>Loop
1/10/2009 15:05:21:940 - END: Label>Loop
1/10/2009 15:05:21:950 - START: Add>kk,1
1/10/2009 15:05:22:010 - END: Add>kk,1
1/10/2009 15:05:22:020 - START: If>kk>1000
1/10/2009 15:05:22:030 - END: EndIf
1/10/2009 15:05:22:040 - START: Wait>0.01
1/10/2009 15:05:22:060 - END: Wait>0.01
1/10/2009 15:05:22:060 - START: Goto>Loop
1/10/2009 15:05:22:070 - END: Label>Loop
1/10/2009 15:05:22:080 - START: Add>kk,1
1/10/2009 15:05:22:090 - END: Add>kk,1
1/10/2009 15:05:22:090 - START: If>kk>1000
1/10/2009 15:05:22:090 - END: EndIf
1/10/2009 15:05:22:090 - START: Wait>0.01
1/10/2009 15:05:22:100 - END: Wait>0.01
1/10/2009 15:05:22:100 - START: Goto>Loop
1/10/2009 15:05:22:110 - END: Label>Loop
1/10/2009 15:05:22:110 - START: Add>kk,1
1/10/2009 15:05:22:120 - END: Add>kk,1
1/10/2009 15:05:22:120 - START: If>kk>1000
1/10/2009 15:05:22:130 - END: EndIf
1/10/2009 15:05:22:130 - START: Wait>0.01
1/10/2009 15:05:22:150 - END: Wait>0.01
1/10/2009 15:05:22:150 - START: Goto>Loop
1/10/2009 15:05:22:160 - END: Label>Loop
1/10/2009 15:05:22:160 - START: Add>kk,1
1/10/2009 15:05:22:170 - END: Add>kk,1
1/10/2009 15:05:22:170 - START: If>kk>1000
1/10/2009 15:05:22:180 - END: EndIf
1/10/2009 15:05:22:191 - START: Wait>0.01
1/10/2009 15:05:22:201 - END: Wait>0.01
1/10/2009 15:05:22:201 - START: Goto>Loop
1/10/2009 15:05:22:211 - END: Label>Loop
1/10/2009 15:05:22:211 - START: Add>kk,1
1/10/2009 15:05:22:221 - END: Add>kk,1
1/10/2009 15:05:22:221 - START: If>kk>1000
1/10/2009 15:05:22:231 - END: EndIf
1/10/2009 15:05:22:231 - START: Wait>0.01
1/10/2009 15:05:22:251 - END: Wait>0.01
1/10/2009 15:05:22:251 - START: Goto>Loop
1/10/2009 15:05:22:261 - END: Label>Loop
1/10/2009 15:05:22:261 - START: Add>kk,1
1/10/2009 15:05:22:271 - END: Add>kk,1
1/10/2009 15:05:22:271 - START: If>kk>1000
1/10/2009 15:05:22:281 - END: EndIf
1/10/2009 15:05:22:281 - START: Wait>0.01
1/10/2009 15:05:22:301 - END: Wait>0.01
1/10/2009 15:05:22:361 - START: Goto>Loop
1/10/2009 15:05:22:371 - END: Label>Loop
1/10/2009 15:05:22:371 - START: Add>kk,1
1/10/2009 15:05:22:381 - END: Add>kk,1
1/10/2009 15:05:22:391 - START: If>kk>1000
1/10/2009 15:05:22:401 - END: EndIf
1/10/2009 15:05:22:401 - START: Wait>0.01
1/10/2009 15:05:22:421 - END: Wait>0.01
1/10/2009 15:05:22:431 - START: Goto>Loop
1/10/2009 15:05:22:431 - END: Label>Loop
1/10/2009 15:05:22:441 - START: Add>kk,1
1/10/2009 15:05:22:452 - END: Add>kk,1
1/10/2009 15:05:22:462 - START: If>kk>1000
1/10/2009 15:05:22:472 - END: EndIf
1/10/2009 15:05:22:472 - START: Wait>0.01
1/10/2009 15:05:22:492 - END: Wait>0.01
1/10/2009 15:05:22:502 - START: Goto>Loop
1/10/2009 15:05:22:512 - END: Label>Loop
1/10/2009 15:05:22:512 - START: Add>kk,1
1/10/2009 15:05:22:522 - END: Add>kk,1
1/10/2009 15:05:22:532 - START: If>kk>1000
1/10/2009 15:05:22:542 - END: EndIf
1/10/2009 15:05:22:552 - START: Wait>0.01
1/10/2009 15:05:22:572 - END: Wait>0.01
1/10/2009 15:05:22:582 - START: Goto>Loop
1/10/2009 15:05:22:592 - END: Label>Loop
1/10/2009 15:05:22:602 - START: Add>kk,1
1/10/2009 15:05:22:602 - END: Add>kk,1
1/10/2009 15:05:22:612 - START: If>kk>1000
1/10/2009 15:05:22:622 - END: EndIf
1/10/2009 15:05:22:632 - START: Wait>0.01
1/10/2009 15:05:22:652 - END: Wait>0.01
1/10/2009 15:05:22:662 - START: Goto>Loop
1/10/2009 15:05:22:672 - END: Label>Loop
1/10/2009 15:05:22:692 - START: Add>kk,1
1/10/2009 15:05:22:703 - END: Add>kk,1
1/10/2009 15:05:22:713 - START: If>kk>1000
1/10/2009 15:05:22:713 - END: EndIf
1/10/2009 15:05:22:713 - START: Wait>0.01
1/10/2009 15:05:22:723 - END: Wait>0.01
1/10/2009 15:05:22:723 - START: Goto>Loop
1/10/2009 15:05:22:733 - END: Label>Loop
1/10/2009 15:05:22:733 - START: Add>kk,1
1/10/2009 15:05:22:743 - END: Add>kk,1
1/10/2009 15:05:22:743 - START: If>kk>1000
1/10/2009 15:05:22:753 - END: EndIf
1/10/2009 15:05:22:753 - START: Wait>0.01
1/10/2009 15:05:22:773 - END: Wait>0.01
1/10/2009 15:05:22:773 - START: Goto>Loop
1/10/2009 15:05:22:783 - END: Label>Loop
1/10/2009 15:05:22:783 - START: Add>kk,1
1/10/2009 15:05:22:793 - END: Add>kk,1
1/10/2009 15:05:22:803 - START: If>kk>1000
1/10/2009 15:05:22:803 - END: EndIf
1/10/2009 15:05:22:813 - START: Wait>0.01
1/10/2009 15:05:22:823 - END: Wait>0.01
1/10/2009 15:05:22:843 - START: Goto>Loop
1/10/2009 15:05:22:863 - END: Label>Loop
1/10/2009 15:05:22:863 - START: Add>kk,1
1/10/2009 15:05:22:873 - END: Add>kk,1
1/10/2009 15:05:22:883 - START: If>kk>1000
1/10/2009 15:05:22:893 - END: EndIf
1/10/2009 15:05:22:903 - START: Wait>0.01
1/10/2009 15:05:22:913 - END: Wait>0.01
1/10/2009 15:05:22:923 - START: Goto>Loop
1/10/2009 15:05:22:923 - END: Label>Loop
1/10/2009 15:05:22:943 - START: Add>kk,1
1/10/2009 15:05:22:953 - END: Add>kk,1
1/10/2009 15:05:22:953 - START: If>kk>1000
1/10/2009 15:05:22:964 - END: EndIf
1/10/2009 15:05:22:974 - START: Wait>0.01
1/10/2009 15:05:22:994 - END: Wait>0.01
1/10/2009 15:05:23:004 - START: Goto>Loop
1/10/2009 15:05:23:004 - END: Label>Loop
1/10/2009 15:05:23:014 - START: Add>kk,1
1/10/2009 15:05:23:024 - END: Add>kk,1
1/10/2009 15:05:23:034 - START: If>kk>1000
1/10/2009 15:05:23:044 - END: EndIf
1/10/2009 15:05:23:054 - START: Wait>0.01
1/10/2009 15:05:23:074 - END: Wait>0.01
1/10/2009 15:05:23:084 - START: Goto>Loop
1/10/2009 15:05:23:094 - END: Label>Loop
1/10/2009 15:05:23:094 - START: Add>kk,1
1/10/2009 15:05:23:104 - END: Add>kk,1
1/10/2009 15:05:23:114 - START: If>kk>1000
1/10/2009 15:05:23:124 - END: EndIf
1/10/2009 15:05:23:134 - START: Wait>0.01
1/10/2009 15:05:23:144 - END: Wait>0.01
1/10/2009 15:05:23:154 - START: Goto>Loop
1/10/2009 15:05:23:154 - END: Label>Loop
1/10/2009 15:05:23:164 - START: Add>kk,1
1/10/2009 15:05:23:174 - END: Add>kk,1
1/10/2009 15:05:23:194 - START: If>kk>1000
1/10/2009 15:05:23:194 - END: EndIf
1/10/2009 15:05:23:204 - START: Wait>0.01
1/10/2009 15:05:23:225 - END: Wait>0.01
1/10/2009 15:05:23:235 - START: Goto>Loop
1/10/2009 15:05:23:235 - END: Label>Loop
1/10/2009 15:05:23:245 - START: Add>kk,1
1/10/2009 15:05:23:245 - END: Add>kk,1
1/10/2009 15:05:23:245 - START: If>kk>1000
1/10/2009 15:05:23:245 - END: EndIf
1/10/2009 15:05:23:245 - START: Wait>0.01
1/10/2009 15:05:23:255 - END: Wait>0.01
1/10/2009 15:05:23:255 - START: Goto>Loop
1/10/2009 15:05:23:265 - END: Label>Loop
1/10/2009 15:05:23:265 - START: Add>kk,1
1/10/2009 15:05:23:275 - END: Add>kk,1
1/10/2009 15:05:23:275 - START: If>kk>1000
1/10/2009 15:05:23:285 - END: EndIf
1/10/2009 15:05:23:295 - START: Wait>0.01
1/10/2009 15:05:23:305 - END: Wait>0.01
1/10/2009 15:05:23:305 - START: Goto>Loop
1/10/2009 15:05:23:315 - END: Label>Loop
1/10/2009 15:05:23:315 - START: Add>kk,1
1/10/2009 15:05:23:325 - END: Add>kk,1
1/10/2009 15:05:23:325 - START: If>kk>1000
1/10/2009 15:05:23:335 - END: EndIf
1/10/2009 15:05:23:335 - START: Wait>0.01
1/10/2009 15:05:23:355 - END: Wait>0.01
1/10/2009 15:05:23:375 - START: Goto>Loop
1/10/2009 15:05:23:395 - END: Label>Loop
1/10/2009 15:05:23:395 - START: Add>kk,1
1/10/2009 15:05:23:405 - END: Add>kk,1
1/10/2009 15:05:23:415 - START: If>kk>1000
1/10/2009 15:05:23:425 - END: EndIf
1/10/2009 15:05:23:435 - START: Wait>0.01
1/10/2009 15:05:23:445 - END: Wait>0.01
1/10/2009 15:05:23:466 - START: Goto>Loop
1/10/2009 15:05:23:466 - END: Label>Loop
1/10/2009 15:05:23:466 - START: Add>kk,1
1/10/2009 15:05:23:466 - END: Add>kk,1
1/10/2009 15:05:23:466 - START: If>kk>1000
1/10/2009 15:05:23:466 - END: EndIf
1/10/2009 15:05:23:466 - START: Wait>0.01
1/10/2009 15:05:23:486 - END: Wait>0.01
1/10/2009 15:05:23:486 - START: Goto>Loop
1/10/2009 15:05:23:496 - END: Label>Loop
1/10/2009 15:05:23:496 - START: Add>kk,1
1/10/2009 15:05:23:496 - END: Add>kk,1
1/10/2009 15:05:23:506 - START: If>kk>1000
1/10/2009 15:05:23:506 - END: EndIf
1/10/2009 15:05:23:516 - START: Wait>0.01
1/10/2009 15:05:23:526 - END: Wait>0.01
1/10/2009 15:05:23:526 - START: Goto>Loop
1/10/2009 15:05:23:526 - END: Label>Loop
1/10/2009 15:05:23:536 - START: Add>kk,1
1/10/2009 15:05:23:536 - END: Add>kk,1
1/10/2009 15:05:23:546 - START: If>kk>1000
1/10/2009 15:05:23:546 - END: EndIf
1/10/2009 15:05:23:546 - START: Wait>0.01
1/10/2009 15:05:23:566 - END: Wait>0.01
1/10/2009 15:05:23:566 - START: Goto>Loop
1/10/2009 15:05:23:566 - END: Label>Loop
1/10/2009 15:05:23:576 - START: Add>kk,1
1/10/2009 15:05:23:576 - END: Add>kk,1
1/10/2009 15:05:23:586 - START: If>kk>1000
1/10/2009 15:05:23:586 - END: EndIf
1/10/2009 15:05:23:596 - START: Wait>0.01
1/10/2009 15:05:23:606 - END: Wait>0.01
1/10/2009 15:05:23:606 - START: Goto>Loop
1/10/2009 15:05:23:606 - END: Label>Loop
1/10/2009 15:05:23:616 - START: Add>kk,1
1/10/2009 15:05:23:616 - END: Add>kk,1
1/10/2009 15:05:23:626 - START: If>kk>1000
1/10/2009 15:05:23:626 - END: EndIf
1/10/2009 15:05:23:626 - START: Wait>0.01
1/10/2009 15:05:23:646 - END: Wait>0.01
1/10/2009 15:05:23:646 - START: Goto>Loop
1/10/2009 15:05:23:646 - END: Label>Loop
1/10/2009 15:05:23:656 - START: Add>kk,1
1/10/2009 15:05:23:656 - END: Add>kk,1
1/10/2009 15:05:23:666 - START: If>kk>1000
1/10/2009 15:05:23:666 - END: EndIf
1/10/2009 15:05:23:676 - START: Wait>0.01
1/10/2009 15:05:23:686 - END: Wait>0.01
1/10/2009 15:05:23:727 - START: Goto>Loop
1/10/2009 15:05:23:747 - END: Label>Loop
1/10/2009 15:05:23:747 - START: Add>kk,1
1/10/2009 15:05:23:777 - END: Add>kk,1
1/10/2009 15:05:23:807 - START: If>kk>1000
1/10/2009 15:05:23:847 - END: EndIf
1/10/2009 15:05:23:877 - START: Wait>0.01
1/10/2009 15:05:23:887 - END: Wait>0.01
1/10/2009 15:05:23:907 - START: Goto>Loop
1/10/2009 15:05:23:917 - END: Label>Loop
1/10/2009 15:05:23:927 - START: Add>kk,1
1/10/2009 15:05:23:927 - END: Add>kk,1
1/10/2009 15:05:23:937 - START: If>kk>1000
1/10/2009 15:05:23:937 - END: EndIf
1/10/2009 15:05:23:937 - START: Wait>0.01
1/10/2009 15:05:23:957 - END: Wait>0.01
1/10/2009 15:05:23:957 - START: Goto>Loop
1/10/2009 15:05:23:967 - END: Label>Loop
1/10/2009 15:05:23:978 - START: Add>kk,1
1/10/2009 15:05:23:978 - END: Add>kk,1
1/10/2009 15:05:23:988 - START: If>kk>1000
1/10/2009 15:05:23:998 - END: EndIf
1/10/2009 15:05:24:008 - START: Wait>0.01
1/10/2009 15:05:24:018 - END: Wait>0.01
1/10/2009 15:05:24:018 - START: Goto>Loop
1/10/2009 15:05:24:018 - END: Label>Loop
1/10/2009 15:05:24:028 - START: Add>kk,1
1/10/2

User avatar
JRL
Automation Wizard
Posts: 3532
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Thu Oct 01, 2009 1:08 pm

I see every indication that the modal messages are executing. No way to tell from the log whether they are displaying but you are apparently finding a way to close them because the script (according to the log) continues. It continues all the way through to these lines

1/10/2009 15:04:08:622 - START: MessageModal>I should be exiting
1/10/2009 15:04:10:228 - END: MessageModal>I should be exiting
1/10/2009 15:04:42:615 - START: //Exit>0
1/10/2009 15:04:42:625 - END: //Exit>0


The reason the script doesn't close is because you have the Exit>0 function remarked out.

If you can't see the messages to close them, why does the script continue? Are you pressing "Enter" which would close the messages if they are the active window? On the other hand if they are the active window, why are they not visible? Are you running this in a virtual environment and possibly simultaneously in a remote desktop, or a VNC session?

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Fri Oct 02, 2009 5:27 am

Are you running this in a virtual environment and possibly simultaneously in a remote desktop, or a VNC session?
I am using RDC (remote desktop connection) to a virtual development enviroment. No VNC sessions.

I have amended the code to:

Code: Select all

// COMPILE_OPTS|C:\userstop.exe||CONSOLE=0|INCLUDES=0| /NOSTOPKEY
Dialog>UserStopDialog
Caption=User Aborted Automation
Left=300
Top=300
Width=310
Height=320
Max=0
Min=0
Close=0
Resize=0
Label=Please select the most apropriate response and press OK,5,5
RadioGroup=Options,Reason For Stoppage,5,20,295,150,Existing customer cannot be found in Siebel%CRLF%Customer contact is required%CRLF%Managed By field requires amendment%CRLF%Automation entering data in the wrong field%CRLF%System was in incorrect state when automation was run%CRLF%Other,reason
Edit=OtherReason,60,145,230,Specify other reason here
Button=OK,120,250,60,20,3
EndDialog>UserStopDialog
OnEvent>KEY_DOWN,VK27,1,UserStop
Let>kk=0
Label>Loop
  Add>kk,1
  If>kk>1000
    Exit>0
  EndIf
  Wait>0.01
Goto>Loop

SRT>UserStop
Label>OtherReason
Show>UserStopDialog,result
//If other has been selected, the user must type why
If>UserStopDialog.Options.ItemIndex=5
    If>UserStopDialog.OtherReason=Specify other reason here
        MessageModal>Message 1
        Goto>OtherReason
    Else
        MessageModal>Message 2
    EndIf
Else
    If>UserStopDialog.OtherReason<Specify>Message 3
        GoTo>OtherReason
    Else
        MessageModal>Message 4
    EndIf
EndIf
MessageModal>I should be exiting
Exit>0
END>UserStop
Shift Escape brings up the required message modal "message 4" but the issue is that the next box doesn't come up without a mouse click from me, it will sit idling forever unless i click the mouse anywhere on scree, then the message "i should be exiting" comes up then again it idles with the MS icon in sys tray flashing until i click and it finally disappears... any ideas why?

Now i have compiled it into my production machine and ran it with the command line
H:\userstop.exe /logfile=h:\userstop_log.txt

this is what i get for two seperate runs in the log file:
RUN1
2/10/2009 15:06:56:532 - Started Macro : H:\userstop.exe
2/10/2009 15:06:56:564 - START: // COMPILE_OPTS|C:\Documents and Settings\p674032d\Desktop\userstop.exe||CONSOLE=0|INCLUDES=0| /NOSTOPKEY
2/10/2009 15:06:56:595 - END: // COMPILE_OPTS|C:\Documents and Settings\p674032d\Desktop\userstop.exe||CONSOLE=0|INCLUDES=0| /NOSTOPKEY
2/10/2009 15:06:56:626 - START: Dialog>UserStopDialog
2/10/2009 15:06:56:657 - END: EndDialog>UserStopDialog
2/10/2009 15:06:56:673 - START: OnEvent>KEY_DOWN,VK27,1,UserStop
2/10/2009 15:06:56:689 - END: OnEvent>KEY_DOWN,VK27,1,UserStop
2/10/2009 15:06:56:704 - START:
2/10/2009 15:06:56:735 - END:
2/10/2009 15:06:56:923 - END: Add>kk,1
2/10/2009 15:06:56:923 - START: If>kk>1000
2/10/2009 15:06:56:939 - END: EndIf
2/10/2009 15:06:56:954 - START: Wait>0.01
2/10/2009 15:06:56:970 - END: Wait>0.01
2/10/2009 15:06:56:985 - START: Goto>Loop
2/10/2009 15:06:56:985 - END: Label>Loop
2/10/2009 15:06:57:001 - START: Add>kk,1
2/10/2009 15:06:57:017 - END: Add>kk,1
2/10/2009 15:06:57:782 - START: Wait>0.01
2/10/2009 15:06:57:813 - END: Wait>0.01
2/10/2009 15:06:57:845 - START: Goto>Loop
2/10/2009 15:06:57:860 - END: Label>Loop
2/10/2009 15:06:57:860 - START: Add>kk,1
2/10/2009 15:06:57:876 - END: Add>kk,1
2/10/2009 15:06:57:892 - START: If>kk>1000
2/10/2009 15:06:57:892 - END: EndIf
2/10/2009 15:06:57:907 - START: Wait>0.01
2/10/2009 15:06:57:938 - END: Wait>0.01
2/10/2009 15:06:57:938 - START: Goto>Loop
2/10/2009 15:06:57:954 - END: Label>Loop
2/10/2009 15:06:57:954 - START: Add>kk,1
2/10/2009 15:06:57:970 - END: Add>kk,1
2/10/2009 15:06:57:985 - START: If>kk>1000
2/10/2009 15:06:57:985 - END: EndIf
2/10/2009 15:06:58:001 - START: Wait>0.01
2/10/2009 15:06:58:032 - END: Wait>0.01
2/10/2009 15:06:58:032 - START: Goto>Loop
2/10/2009 15:06:58:048 - END: SRT>UserStop
2/10/2009 15:06:58:063 - START: Label>OtherReason
2/10/2009 15:06:58:063 - END: Label>OtherReason
2/10/2009 15:06:58:079 - START: Show>UserStopDialog,result
2/10/2009 15:07:05:297 - END: Show>UserStopDialog,result
2/10/2009 15:07:05:329 - START: //If other has been selected, the user must type why
2/10/2009 15:07:05:329 - END: //If other has been selected, the user must type why
2/10/2009 15:07:05:391 - START: If>UserStopDialog.Options.ItemIndex=5
2/10/2009 15:07:05:907 - END: Else
2/10/2009 15:07:05:922 - START: If>UserStopDialog.OtherReasonMessage 4
2/10/2009 15:07:07:188 - END: MessageModal>Message 4
2/10/2009 15:07:12:469 - START: EndIf
2/10/2009 15:07:12:500 - END: EndIf
2/10/2009 15:07:12:516 - START: EndIf
2/10/2009 15:07:12:516 - END: EndIf
2/10/2009 15:07:12:531 - START: MessageModal>I should be exiting
2/10/2009 15:07:13:859 - END: MessageModal>I should be exiting
2/10/2009 15:07:13:875 - START: Exit>0
2/10/2009 15:07:13:906 - Finished Macro : H:\userstop.exe
RUN 2
2/10/2009 15:10:33:396 - Started Macro : H:\userstop.exe
2/10/2009 15:10:33:427 - START: // COMPILE_OPTS|C:\Documents and Settings\p674032d\Desktop\userstop.exe||CONSOLE=0|INCLUDES=0| /NOSTOPKEY
2/10/2009 15:10:33:443 - END: // COMPILE_OPTS|C:\Documents and Settings\p674032d\Desktop\userstop.exe||CONSOLE=0|INCLUDES=0| /NOSTOPKEY
2/10/2009 15:10:33:458 - START: Dialog>UserStopDialog
2/10/2009 15:10:33:489 - END: EndDialog>UserStopDialog
2/10/2009 15:10:33:505 - START: OnEvent>KEY_DOWN,VK27,1,UserStop
2/10/2009 15:10:33:521 - END: OnEvent>KEY_DOWN,VK27,1,UserStop
2/10/2009 15:10:33:911 - END: Label>Loop
2/10/2009 15:10:33:911 - START: Add>kk,1
2/10/2009 15:10:33:927 - END: Add>kk,1
2/10/2009 15:10:33:927 - START: If>kk>1000
2/10/2009 15:10:33:927 - END: EndIf
2/10/2009 15:10:33:943 - START: Wait>0.01
2/10/2009 15:10:33:958 - END: Wait>0.01
2/10/2009 15:10:33:958 - START: Goto>Loop
2/10/2009 15:10:33:974 - END: Label>Loop
2/10/2009 15:10:33:989 - START: Add>kk,1
2/10/2009 15:10:33:989 - END: Add>kk,1
2/10/2009 15:10:34:005 - START: If>kk>1000
2/10/2009 15:10:34:005 - END: EndIf
2/10/2009 15:10:34:021 - START: Wait>0.01
2/10/2009 15:10:34:364 - END: EndIf
2/10/2009 15:10:34:364 - START: Wait>0.01
2/10/2009 15:10:34:427 - END: Wait>0.01
2/10/2009 15:10:34:427 - START: Goto>Loop
2/10/2009 15:10:34:443 - END: Label>Loop
2/10/2009 15:10:34:443 - START: Add>kk,1
2/10/2009 15:10:34:458 - END: SRT>UserStop
2/10/2009 15:10:34:458 - START: Label>OtherReason
2/10/2009 15:10:34:474 - END: Label>OtherReason
2/10/2009 15:10:34:489 - START: Show>UserStopDialog,result
2/10/2009 15:10:37:099 - END: Show>UserStopDialog,result
2/10/2009 15:10:47:865 - START: //If other has been selected, the user must type why
2/10/2009 15:10:47:881 - END: //If other has been selected, the user must type why
2/10/2009 15:10:47:896 - START: If>UserStopDialog.Options.ItemIndex=5
2/10/2009 15:10:47:912 - END: Else
2/10/2009 15:10:47:912 - START: If>UserStopDialog.OtherReasonMessage 4
2/10/2009 15:10:52:147 - END: MessageModal>Message 4
2/10/2009 15:10:56:491 - START: EndIf
2/10/2009 15:10:56:537 - END: EndIf
2/10/2009 15:10:56:537 - START: EndIf
2/10/2009 15:10:56:553 - END: EndIf
2/10/2009 15:10:56:569 - START: MessageModal>I should be exiting
2/10/2009 15:10:57:647 - END: MessageModal>I should be exiting
2/10/2009 15:11:05:741 - START: Exit>0
2/10/2009 15:11:05:741 - Finished Macro : H:\userstop.exe
Noticing how on the sections in bold, although i take say 2 seconds to click the message modal OK button it takes 4 seconds for the endif to execute. I can tell you that it only occurs when i click the mouse anywehre on screen. So as i mentioned earlier, it comes up i click ok and the next one will never come up unless i click the mouse... it just idles... any reason? its quite wierd and it is confusing me :?

zabros2020
Pro Scripter
Posts: 70
Joined: Sun May 03, 2009 11:49 pm
Location: AU

Post by zabros2020 » Wed Oct 07, 2009 12:31 am

any takers? :cry:

please? :D
Loving MS's Capabilities!!!

Post Reply
Sign up to our newsletter for free automation tips, tricks & discounts