This tag should be used for questions concerning Microsoft Foundation Class Library (MFC), a C++ framework for Windows desktop GUI application programming.
Can someone enlighten me as to the difference between private and protected members in classes? I understand from best practice …
c++ class mfcWhat the difference between LPCSTR, LPCTSTR and LPTSTR? Why do we need to do this to convert a string into …
c++ windows visual-c++ mfcHow do I convert from CString to const char* in my Unicode MFC application?
c++ visual-studio visual-c++ unicode mfcI can convert a Double to a CString using _ecvt result_str=_ecvt(int,15,&decimal,&sign); So, is …
c++ visual-c++ mfcI have a class, lets say CAppPath which has a static method: public: static CString GetAppPath(); and in CAppPath.cpp …
c++ windows oop mfc static-methodsLet's say I have time_t and tm structure. I can't use Boost but MFC. How can I make it …
c++ datetime mfcI am working on Win32 project in Visual Studio 2011. It is generating MFC error when I includes afx.h or …
visual-c++ dll mfcI have a std::string. I need to convert this std:string to a Cstring. I try to use the .…
c++ string visual-studio mfc