Reputation: 17565
I've installed Visual Studio on my private PC, the version is "Microsoft Visual Studio Community 2019", version 16.1.6.
In order to prepare a job interview, I'd like to do some basic MFC/AFX programming, starting by the basic CMapStringToString
example from the Microsoft website.
This, however, seems not to work, as I don't have access to the mentioned file afxcoll.h
. Indeed: there is no file, called afx*.h
on my PC.
Is this a limitation of my free downloaded Visual Studio installation, or is there any add-in, add-on, extension or whatever I can install in order to work with CMapStringToString
objects?
Thanks in advance
Upvotes: 2
Views: 496
Reputation: 51894
You need to explicitly install MFC support in Visual Studio - which you can do on Community editions:
Upvotes: 2