Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MFC resources / links

Tags:

c++

c

mfc

I am about to reenter the MFC world after years away for a new job. What resources to people recommend for refreshing the memory? I have been doing mainly C# recently.

Also any MFC centric websites or blogs that people recommend?

like image 438
JamesSugrue Avatar asked Aug 26 '08 11:08

JamesSugrue


6 Answers

The best: The Code Project

like image 76
Magnus Westin Avatar answered Oct 05 '22 21:10

Magnus Westin


  • For blogs: Your best bet would be the Visual C++ Team Blog.
  • For books: Programming Windows with MFC is one of the best book on the subject.
  • For tutorials: Simply search google for various tutorials on MFC.

enter image description here

like image 41
Brian R. Bondy Avatar answered Oct 05 '22 21:10

Brian R. Bondy


There's lots of useful information here:

http://www.flounder.com/mvp_tips.htm

like image 20
ChrisN Avatar answered Oct 05 '22 19:10

ChrisN


I would highly recommend my all-time favorite book: MFC Internals: Inside the Microsoft© Foundation Class Architecture

It is not a 'how-to' book — it is a 'how does it work' book.

alt text

like image 41
prakash Avatar answered Oct 05 '22 21:10

prakash


Its been a long time since i did any MFC but back then it used to be

"MFC internals" + debug into the MFC code and find what happens which used to be the best resources on MFC

Samples used to be available from Code Project to quickly get you going.

like image 35
computinglife Avatar answered Oct 05 '22 20:10

computinglife


The vital "how do I?" book is http://www.amazon.com/gp/reader/0201185377/ref=sib_dp_pt#reader-link

Codeproject is also invaluable, although many of the 3rd party controls there nowhave counterparts in the new MFC feature pack.

like image 37
Martin Beckett Avatar answered Oct 05 '22 19:10

Martin Beckett