Page 1 of 1
Run a program every 3 minutes
Posted: Mon Nov 09, 2015 7:35 pm
by Jariel
I have an eviews program that i would like to run regularly (for example every 3 minutes). Is that possible/how to do that?
It would be even better if could set the time it should run (for example 15:00 daily).
Re: Run a program every 3 minutes
Posted: Mon Nov 09, 2015 9:06 pm
by EViews Gareth
Best way to do it is with Windows Scheduler or some other service outside of EViews. If you run EViews from a command prompt you can specify the name of a program as an argument. Example script:
Code: Select all
c:\program files\EViews 9\eviews9.exe c:\myfiles\myeviewsprog.prg
If the last line of your EViews program contains the exit command, EViews will close after running.
Re: Run a program every 3 minutes
Posted: Tue Nov 10, 2015 5:03 am
by Jariel
Thanks, exactly what i wanted.