vote up 3 vote down star

Im sure this will be a simple one but have a project that started as a test.
When it was created it was saved as "Project2.dpr"

Now the test is no longer a 'test', i would like to change the projects name to something more meaningful.

whats the best way to do this?

Any issues with just changing the file name and the Program line to the new name? i.e.

meaningful.dpr

Program meaningful;

Note:Delphi 7 if it matters

flag

3 Answers

vote up 19 vote down check

Just do "Save Project as" from the file menu in Delphi giving it the name you want and, later on when you feel like, remove the Project2.* files from your folder as they are not needed anymore.

link|flag
You will want to do it this way because it will change the identifier in the files as well as the file names. – Jim McKeeth Nov 18 '08 at 5:01
Yup, this is the way to do it. – Gamecat Nov 18 '08 at 7:09
vote up -4 vote down

In a command prompt, cd to your Delphi project and type:

ren Project1.* meaningful.*

Since Delphi7 doesn't have file-name references in project settings, this should work just fine. The "Program" clause does nothing and its name doesn't affect anything (AFAIK), by the way.

link|flag
I'd recommend backing up the project before doing something like this... just in case. – TM Nov 18 '08 at 2:12
The program name must be identical to the filename without the extention. – Gamecat Nov 18 '08 at 7:10
Be advised: Does not work in Delphi 8 or higher – Lars Truijens Nov 18 '08 at 14:40
It does not work with any Delphi version at all. In Delphi <= 7 you must also rename the program identifier to match the filename, in Delphi >= 2005 I think there are additional references in the .bdsproj and .dproj files that need to be fixed. – dummzeuch Jan 7 at 8:44
You do not need to rename the program identifier. The program identifier is purely informational and does not affect the compilation process. But, true, it does break project files - I haven't used the IDE for ages. – CyberShadow Feb 8 at 9:25
vote up 4 vote down

FYI: Starting with Delphi 8 you can simply right-click the project in the project manager and select "Rename" (or simply press F2). This has the benefit over the "Save As" approach that you don't end up with a copy.

(sorry, no Delphi 7 - thanks to Lars for the update)

link|flag
Not possible in Delphi 7. But in Delphi 8 and higher you can. I prefer this even over the Save Project as, since you don't create a copy. – Lars Truijens Nov 18 '08 at 14:41
Also, when renaming, you can use ..\ or <foldername>\ to move the project (and even more convenient: units/forms) to move the files to different folders. – dummzeuch Jan 7 at 8:46

Your Answer

Get an OpenID
or

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