cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Program Title
Program Title
Aug 18, 2013 at 5:35am UTC
colognem
(29)
Hello, I just wanna ask how to change the name of your program.
It's default name is the location of your file.
Last edited on
Aug 18, 2013 at 5:44am UTC
Aug 18, 2013 at 6:05am UTC
Chervil
(7320)
1
2
3
4
#include <windows.h>
SetConsoleTitle(
"Title"
);
Aug 18, 2013 at 6:26am UTC
Disch
(13742)
Ahem
SetConsoleTitleA(
"Title"
);
// <- note the 'A'
http://www.cplusplus.com/forum/windows/106683/
Aug 18, 2013 at 8:26am UTC
colognem
(29)
Thanks!
Aug 18, 2013 at 9:26am UTC
Chervil
(7320)
@Disch Noted, thanks.
Topic archived. No new replies allowed.