Lew,

Have a loader app (could be a batch file) that runs your main app in a
loop and only exits when a certain file is present locally.

Sample batch file (untested):

<code>
@echo off
:start
myapp.exe
if not exist myapp.quit goto start
del myapp.quit
</code>

Have your main app exit every X minutes so it can get restarted by the
loader app.

Its a hack for sure, but desperate times often call for desperate
measures.

Malcolm


_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to