batch file for starting application
how can i create a loop file to keep loop start application, if the application is close restart it... but only 1 instance of application running at a time.
how the loop script look like?
[191 byte] By [
lsy] at [2007-11-20 11:48:27]

# 2 Re: batch file for starting application
First, no script can detect any running instances of processes. Therefore what you want cannot be done with scripting. I would suggest Visual Basic 6. It would be very easy to accomplish.
Second, even if it would be possible with a script, creating a loop to run for x amount of time would tie down your processor. You would not want this. A simple timer in VB6 would handle this for you.
# 3 Re: batch file for starting application
First, no script can detect any running instances of processes. Therefore what you want cannot be done with scripting. I would suggest Visual Basic 6. It would be very easy to accomplish.
Second, even if it would be possible with a script, creating a loop to run for x amount of time would tie down your processor. You would not want this. A simple timer in VB6 would handle this for you.
so any other i can use to keep my program running? other than windows schedular task as well...
lsy at 2007-11-10 3:41:23 >

# 4 Re: batch file for starting application
I mentioned Visual Basic 6 twice in my previous post. To learn enough to accomplish what you want would take about an hour.