Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
AutoSaving of the PRG's
Message
From
16/11/2006 13:44:23
 
General information
Forum:
Visual FoxPro
Category:
Installation, Setup and Configuration
Miscellaneous
Thread ID:
01169994
Message ID:
01170397
Views:
11
This message has been marked as a message which has helped to the initial question of the thread.
>Hi Gang.
>
>Was there a setting in VFP or FP that allowed auto saving of PRG's as you work on them?
>
>A friend of mine has had a rash of power outages on his PC (No UPS) and today lost some important work as the PC died a quick death. Autosaving could have saved the work... sigh.
>
>Tommy

Here someting that is quick and dirty. Save this code to HOME()+"Save.prg".
PUBLIC oSave
oSave = CREATEOBJECT("tmrSave")

DEFINE CLASS tmrSave as Timer
	interval = (15*1000)
	
	PROCEDURE Timer
		KEYBOARD "{Ctrl+S}"
	ENDPROC
	
ENDDEFINE
But before running it, you will need to turn off the "Compile before saving" option on the IDE tab of the Options dialog. Don't forget to click the "Save as Default" button.
Greg Reichert
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform