Pages: 1
RSS
How to slow down the pop-up windows?
 
I'd like to slow down the pop-up windows in the Scheduler, so I can read what issue it is having.

It was suggested that I add "pause" to the end of my cmd file.

My file is:

For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Send

So I tried:
For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Send; pause;

But it didn't slow it down enough to read it.

I tried:
For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Send; pause; pause:

I tried:
So I tried:
For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Send; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause; pause;

I tried:
So I tried:
For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Send;pause;pause;pause;pause;

I tried:
So I tried:
For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.tpl";A="%%i";To="%i";Pause;Pause;

It just doesn't seem to slow don much.

Should pause have spaces around it? Should it have a semi-colin? should it have parenthesis? Should I replace Send with Pause?

Can someone tell me the correct way, please?

Will more pauses, slow it down more?

Thanks.
 
You should add the Pause command on a new line, not as an extra option for The Bat!
So you should get something like this:

For %%i in ("C:\\BAT\\TA\\*.txt") do "C:\Program Files\The Bat!\thebat.exe" /MailT="C:\BAT\Sendfile.t­pl";A="%%i";To="%i";Send
Pause
__________________________________
I'm just a user of The Bat! I don't work for Ritlabs.
 
Thank you for your help.
Pages: 1