Kasim Rangwala
Kasim Rangwala

Reputation: 1835

How to Learn MFC C++ 2013

I used to develop Application for Android as well as Windows Phone.

I also have a good grip on .NET(C#) and PHP but, now I have to develop an Application using MFC C++ on Visual studio 2013.

I'm not good with C++ so, I had read books like: * Ivor Horton's Beginning Visual C++ 2012 * Professional C++, 3rd Edition.

But there isn't a detailed guideline about MFC classes and MFC application Development life-cycle.

So, I wanna know is there any way to learn MFC 2013

Upvotes: 0

Views: 1525

Answers (1)

zar
zar

Reputation: 12247

Most of the books on MFC are old, at least the good ones. So first thing is don't feel bad about the age of the books out there and for that reason you probably wouldn't find a good book with VS2013 or even VS2010. Here are your best choices.

  1. Programming Windows by Charles Petzold
  2. Programming Windows with MFC by Jeff Prosise

No-1 is not about about MFC but I am including this for 'nice to read or for reference' because MFC is wrapper of Windows APIs so it makes easier to understand (if you want to go in-depth) what it wraps.

Upvotes: 2

Related Questions