tags:

views:

100

answers:

3

When i found some questions, i always try to go to www.codeproject.com and www.codeguru.com to find some sample projects or tutorial. But sometime i found the resources from the codeproject and codeguru are not enought.

So can someone suggest me some better website which contains useful sample projects or tutorial about C++/MFC ... ?

Thanks in advance !

+1  A: 

Yes, check out the MSDN How to videos for native code.

http://msdn.microsoft.com/en-us/visualc/bb496952.aspx

Andrew

P.s. is what I am using. :-)

REA_ANDREW
+1  A: 

Microsoft provides a bunch of MFC samples with Visual C++. If they're not on your local machine, you can download them from MSDN.

Nick Meyer
+1  A: 

I realize you already mentioned CodeProject, but I must specifically point out the ToDoList project. It is a great end-to-end example of a well-designed, correctly object-oriented MFC application. There are a lot of classes in that project that I have re-used in my own stuff. Not to mention, it's also a great app in its own right.

Aidan Ryan