changing ap name

Started by
3 comments, last by Ezbez 16 years, 11 months ago
hello! Is there a way to change the name of a visual studio c++ ap, other than creating a new project and copying the files to it? By name i mean the name that is displayed top-left in the ap border. I just can't seem to do it from within Vis Studio :( Maybe there is a run time way to set the name? thanks tony
Advertisement
How about saving the solution/project under a different name?
I found this, hopefully it's what you're looking for.

edit: Unless it's a console application, but I'm sure that you can do it there too, you'll just need the handle to the window...

Yup, found it.

C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!

Quote:Original post by nobodynews
I found this, hopefully it's what you're looking for.


Aha! Thanks v much :)

I think that what you're trying to do can also be done via:
project->properties->Config. Properties->Linker->General->Output File

This will change the name of the file that VC++ creates when you compile. IIRC, the title of your window will default to this, but I don't know for certain.

This topic is closed to new replies.

Advertisement