>> To rename a project in VC++ 2003 or higher, simply open its solution.
>> then select the project in the solution explorer and press F2.
>> Change the project name, press enter.
>
> Thanks a lot, how about with version 2002 which is what I use at home.
I think it should work as well. It has been 4 years since I used it though.
For home use you could also use VC2005 express. it's free.
However, it does not come with MFC, ATL and some other stuff, so it might
not be sufficient for what you do.

Signature
Kind regards,
Bruno van Dooren
bruno_nos_pam_van_dooren@hotmail.com
Remove only "_nos_pam"
Z.K. - 20 Jul 2006 05:30 GMT
>>>To rename a project in VC++ 2003 or higher, simply open its solution.
>>>then select the project in the solution explorer and press F2.
[quoted text clipped - 6 lines]
> However, it does not come with MFC, ATL and some other stuff, so it might
> not be sufficient for what you do.
Well, I tried what you suggested and though it does rename the project,
the other files are still the same name. I was looking for something
that would rename the entire project including all the files with the
same name. Oh well, I guess there is not anything like that. Too bad
Microsoft did not include such a tool. It would have been very useful.
Z.K.
David Connet - 22 Jul 2006 05:16 GMT
>>>>To rename a project in VC++ 2003 or higher, simply open its
>>>>solution. then select the project in the solution explorer and press
[quoted text clipped - 14 lines]
> Too bad Microsoft did not include such a tool. It would have been
> very useful.
ren ThisProject.* ThatProject.*
cd res
ren ThisProject.rc2 ThatProject.rc2
cd ..
vim ThatProject.* *.rc res\*.rc2
(search/replace all instances of ThisProject.
I do this all the time... Wizards just get in the way...
Dave Connet
Z.K. - 28 Jul 2006 11:58 GMT
>>>>>To rename a project in VC++ 2003 or higher, simply open its
>>>>>solution. then select the project in the solution explorer and press
[quoted text clipped - 25 lines]
>
> Dave Connet
Well, I managed to do it by hand, but it took a lot of time and editing
before the project would compile properly.
Z.K.