Many years ago I worked extensively with C, but since then most of my programming experience has been with
VB and VBA.
I decided to get back into C, so purchased Visual Studio 2008.
I bought a couple of books that claimed to explain how to use C++, but these covered only console applications. While console applications provide useful experience, they aren't what today's users require.
I bought Ivor Horton's book because it covered Windows applications. So far, I've studied the book up to Chapter 14 and have learned a lot by following Ivor's detailed instructions. I get the impression that Ivor ran out of time or enthusiasm when he got to Chapter 15 because that chapter provides only somewhat vague suggestions about how the code should be enhanced. I had to download the complete code from the web site and compare it line by line with my code to see what was needed.
One other problem is that Ivor's coding example is entirely devoted to graphics, there's almost no mention of text. That seems strange to me because I'm principally interested in creating applications that deal with data.
From what I understand at this point, C++ displays text in the default Windows font. I want to create forms using font faces, font sizes, and font styles I select. The book doesn't seem to provide information about this topic. I expected to be able to place a control on a form and select the font properties for that control in a manner similar to the way that can be done in
VB and VBA. Perhaps that can be done but, if so, I haven't yet found a way to do it, and the book doesn't seem to provide any help. Nor have I found much help about this subject in Microsoft's sites
I'd appreciate any suggestions that might lead me to sources of information about dealing with text in MFC and Windows Forms applications.