Is there any way that I can have the Delphi IDE auto-save all opened projects every X minutes, or just before compilatilation? I looked in XE2 and in Gexperts and didn't see anything, but that means nothing as I am thick.

link|improve this question

1  
You should really emphasise your question over stories, some people not very good at reading large bodies of text while in hurry to give an answer... Meanwhile, GExperts/CnPack do not have such feature, Castalia have (in not too stable state). Alternatively, you can write such wizard yourself, it is simple but you have to figure out what to do with never-saved-before modules. – user539484 Feb 16 at 6:25
CTRL+SHIFT+S is your friend, I'm obsessed with this short cut since D7 days ((: – Dorin Duminica Feb 16 at 9:53
Bah, I like a little story. The "little dialog admitting guild" phrase put a smile on my face. – Leonardo Herrera Feb 16 at 14:10
I think it's hilarious, but I deleted the rant, because this site is built around short readable questions and answers. Please have mercy on the non-english users especially, who have a hard time filtering out the noise, and finding the signal. Personally, Mawg, I'm right there with you and agree with your frustration, I hope you can understand why it's better to edit that stuff out though. – Warren P Feb 16 at 14:15
feedback

2 Answers

up vote 8 down vote accepted

Andy's DDevExtensions has a "Compile Backup" option that automatically saves a copy of modified units to a .cbk file (e.g. Example.pas.cbk).

link|improve this answer
This got the answer because of the other goodies offered. – Mawg Feb 16 at 2:25
2  
@Mawg: Sorry; I missed the part of the question that said "How do I save before compiling and get other goodies thrown in as well?" :) Maybe you should edit your question? (+1 to Gerry, BTW. I'd forgotten DDevExtensions did this as well.) – Ken White Feb 16 at 2:40
+1 and my apologies, Ken. You did answer correctly and more quickly, but I like those other goodies which I forgot to ask for :-) – Mawg Feb 18 at 5:45
feedback

Check the checkbox in Tools->Options->Environment Options->Autosave->Editor Files. It will save the files on compile/run.

(If you haven't already, I'd also check Tools->Options->Editor Options->Create backup files, and set the File backup limit to 10 or more. This enables a sort of version control using the .history folder for each project (which you can access using the History tab at the bottom of the Code Editor.)

link|improve this answer
-1, fails to comply with an OP's requirement. First guess never saves on compilation. Second one is off-topic because it never saves on compilation and nothing to backup. – user539484 Feb 16 at 6:12
1  
Au contraire, when those two are checked and you run the program, the files save. To prove it you can look at the "Save" toolbutton. It will be greyed out, suggesting that it has been done. – Martin Melka Feb 16 at 7:57
@user, perhaps in the very old version of Delphi you use it doesn't, but in the modern versions like XE2 it certainly does. – Ken White Feb 16 at 12:09
And the OP uses XE2. I cannot understand downvoting on such an issue. – Leonardo Herrera Feb 16 at 14:12
The downvoter in question has some sort of personal issue with me (and another person here). He would downvote me if the question was "What is 1 + 1?" and I answered 2, for some ridiculous reason like "You used the wrong font." :) If you look at his overall voting history, he downvotes about 75% of the time, which mean that he thinks most of us here are wrong. At least two of us are apparently always wrong. – Ken White Feb 16 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.