Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey all. Any one have any recommendations for a great MFC book that I can learn? I have background in .NET and C++. Thanks!

share|improve this question
3  
Unless you have to support an existing product, I would suggest not to learn MFS but use something much suitable for modern GUI development like Qt4. – Artyom Oct 4 '09 at 20:27

closed as not constructive by Aziz Shaikh, SingerOfTheFall, C. A. McCann, Linger, Kris Nov 8 '12 at 13:50

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 7 down vote accepted

For a first pass at MFC, even better than a book is the Microsoft Scribble tutorial.

Just like a beginning C programmer starts with a program that prints "Hello world", the Scribble tutorial takes you through the steps needed to draw "Hello world" on the screen using the mouse.

It presents the most basic MFC operations (putting controls in a dialog, responding to GUI events, drawing in OnDraw (), etc) in a very simple and easy-to-understand way.

share|improve this answer
Still remember running through that, then repeating it a second time to explore all the "further information" links :-D – peterchen Nov 9 '08 at 14:20
I also started learning MFC with the Scribble tutorial, on VC6. From then on MFC learning was a self-runner. Anyone knows if the Scribble tutorial was updated for the newer Visual Studios? – vividos Nov 17 '08 at 14:08

You won't find a more complete book than Jeff Prosise's Programming Windows with MFC. It's the MFC equivalent of Petzold's Programming Windows.

share|improve this answer
1  
I know of 4 freshmen just out of college, who worked on the Prosise book for about a month and then successfully went live on a CAD application. – Agnel Kurian Sep 30 '08 at 7:17
Is that book still current??? I remember devouring this in the late 90's, it's awesome (after reading Petzold of course). I haven't touched MFC (Microsoft Fried Chicken) since 2001 (v4.01 I think it was???). – Luke Feb 18 '09 at 22:28

Have a look at the answers to this question.

share|improve this answer

I remember reading this one in 2000.
MFC Programming from the Ground Up

share|improve this answer

Programming Windows with MFC by Jeff Prosise does for MFC what Petzold did for Win32. That said, if you know .NET why would you take a backward step to an older API?

share|improve this answer

Before understanding MFC, you have to understand the native Win32 API. After you are familiar with C-Programming, the best book to learn Win32 API is "Programming Windows 5th Edition" from Charles Petzold. After undestanding this stuff, you can search a book about MFC....but I know nobody who says, that (s)he is a enthusiastic MFC-Programmer, because it has no benefit.

share|improve this answer
I totally agree here. Once you learn the native Win32 API you'd find probably the only benefit out of MFC if when it comes to laying out controls in Dialogs... so i do that then open the resource files and pluck out the XY coordinates and place them in my native code – Steve Obbayi Dec 31 '09 at 14:37

Dissecting MFC (Chinese name: 深入浅出MFC): by Hou Jie is the most famous MFC book in China.

Some years ago almost EVERY MFC developer bought this book, including me. It's a must-read book in China MFC community.

share|improve this answer

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