in my script,
i open a Dialog box and show some instructions, and then asks for some input for user name and password.
here is the code:
// instruction message
Dialog>Instructions
Caption=Instructions
Top=247
Width=473
Left=217
Height=160
Label=** Instructions **,185,8
Label=1. Save today's list of CIC and WTN's in 'C:\RESULTS\514.csv',30,36
Label=2. Close all programs,30,56
Label=3. Stop the process anytime by pressing "SHIFT + ESC",30,76
EndDialog>Instructions
show>Instructions
MoveWindow>Instructions,1,1
// open siebel
Input>login,Enter Your Oracle Siebel Reporting Server login:
If>login=,end
Input>password,Enter Your password:
If>password=,end
CloseWindow>Instructions
// run SQL plus in DOS
Press LWinKey
Send Character/Text>r
release LWinKey
wait>0.5
Send Character/Text>cmd
press enter
wait>1.5
Send Character/Text>sqlplus %login%/%password%@siebrpt
press enter
wait>4
this works normally like its supposed to when i run the .SCP file in macroscheduler, but after compiling,
it wont pop up the Dialog box anymore. and i get the "Instructions box not present error" with the option of Abort/Ignore
whats going on?!?
