I want to make a custom file template for .cpp and .h files in VC++ 2010 but can't figure out how to do this.

All I want to include in the files that I create is:

/* 
* File:   main.cpp
* Author: NoobiCake
*
* Created on 14. juli 2011, 14:57
*/

int main( int argc, char* args[] ) {
    return 0;
}

It's just like in NetBeans, when you create a new file it includes this in the file.

Anyone know how to do this?
Thanks for any help :)

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

A simple way to do it, is to create a macro to insert the desired text, and bind it to a key.

link|improve this answer
Is it also possible to insert the current time with macros? – NoobiCake Jul 14 '11 at 14:53
i don't know, but i would be surprised if not. – EvilTeach Jul 14 '11 at 17:45
It appears that VC++ Express Edition don't have user defined macros. – NoobiCake Jul 17 '11 at 11:22
Ya. that really rots. looks like no addins either. – EvilTeach Jul 17 '11 at 17:50
feedback

Your Answer

 
or
required, but never shown

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