I am currently trying to learn C++ win32 with buttons window creation shell procces and im not getting most of this is there a place to learn all of this (place == book) just for beginners
The following includes answers to the "Win32 for beginners?" question: http://stackoverflow.com/questions/574092/where-can-i-find-good-ebooks-to-learn-win32
The other part of your question, i.e. "C++ for Win32?", has several possible answers that I know of:
Just use C++ as "a better C", and see references for 'Win32 for beginners using C'.
Microsoft have a library called "MFC", which is a C++ class library that wraps (encapsulates) the Win32 API. MFC was designed long ago and is not good, modern C++ class design (e.g. it uses lots of macros). It is presumably easier to use if you already know the underlying (C-style) Win32 API.
Other C++ class libraries from Microsoft:
- The "ATL" is newer than MFC, 'lighter' than MFC (i.e. you only link to whatever subset of its functionality you use), and is based on templates.
- The "WTL" is a windowing template library built on ATL, which has never been officially suported by Microsoft but is available as open source.
- "ATL Server" (which is a rather confusing name) is a C++-based web framework. It is no longer being developed by MS, but it continues to be supported up through VS2005's support lifetime (see http://blogs.msdn.com/vcblog/archive/2007/07/27/support-policy-for-atl-server-library.aspx)
- There may be 3rd-party C++ wrappers for Win32; I'm thinking especially of the cross-platform toolkits like Qt/Windows and wxWidgets.
Win32 + C++ usually means MFC. Out of print but you may find a used or ebook copy of Jeff Prosise's Programming Windows with MFC. This book is excellent.
Get The Petzold. It is the book on Win32 programming. Without all of that MFC muckety muck. Even if you never get this far down, it will help you understand what those MFC classes are trying to do.
This is probably the best book to learn MFC:
If you want to learn how to write a framework for Windows, here's a book on it:
The only book is the Petzold (in C, but easy to convert into C++ classes). Avoid MFC.
2 380 hits on Professional Win32 api group for more than 20 years
and you can't find it ?!!!!