Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Quit application when file('xxxxxxxxxx')
Message
From
05/07/2000 23:27:22
 
 
To
05/07/2000 06:25:27
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00387980
Message ID:
00388681
Views:
10
Then don't add the timer to _SCREEN or a Form. Just define it and create it:
PUBLIC oTimer1
oTimer1 = CREAT([oTimer])

DEFINE CLASS oTimer AS TIMER
	INTERVAL = 1000
	PROC TIMER
	IF FILE([foo.txt])
		QUIT
	ENDIF
ENDPROC
ENDDEFINE
Dave

>No that don't works.
>It only works if the window where my app. is running or (vfp) has the focus.
>??????
>
>thanks anyway !!
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform