PDA

View Full Version : How do I change the program "title" in Visual Studio?



SNYP40A1
July 31st, 2008, 05:10 PM
I wrote a C++ console program in Visual Studio for Windows. Up in the top left hand corner, there is the title of the program. By default, I think it says something like "C++ Program". How do I change this title to something else?

henchman
August 1st, 2008, 06:44 AM
if my assumption is right and you are using the win32-api to code your program, you may have fun using the SetWindowText (http://msdn.microsoft.com/en-us/library/ms633546(VS.85).aspx) function :)