Top "Mfc" questions

This tag should be used for questions concerning Microsoft Foundation Class Library (MFC), a C++ framework for Windows desktop GUI application programming.

How do I control the text input panel programmatically (TabTip.exe) in Windows Vista/7

I'm adapting an application for touch screen interface and we want to use the tablet text input panel included in …

c++ windows mfc winapi accessibility
C# - Capturing Windows Messages from a specific application

I'm writing a C# application which needs to intercept Window Messages that another applications is sending out. The company who …

c# .net c++ mfc windows-messages
VS 2008, MFC: add OnInitDialog - how?

This is my first MFC application away from VC6, and I feel a little bit stupid: How do I add …

visual-studio-2008 ide mfc
Exceptions silently caught by Windows, how to handle manually?

We're having problems with Windows silently eating exceptions and allowing the application to continue running, when the exception is thrown …

c++ windows mfc exception message-pump
Is MFC still used for new development (with any material volume)?

I've never been a big fan of MFC, but that's not really the point. I read that Microsoft is due …

visual-c++ mfc frameworks lifecycle
How to compile VC++ 2010 projects using Visual Studio 2012 and Windows SDK 7.1

I have a lot of projects done with VS2010 in C++. Now we have switched to VS2012 but we want …

c++ visual-studio-2010 visual-c++ mfc visual-studio-2012
Static or dynamic linking the CRT, MFC, ATL, etc

Back in the 90s when I first started out with MFC I used to dynamically link my apps and shipped …

c++ mfc linker
Always-in-front dialogs

Is there a way to create a modeless dialog box in C++ MFC which always stays on top of the …

c++ mfc dialog modeless always-on-top
How to convert a hex string to an unsigned long?

I have following hex value CString str; str = T("FFF000"); How to convert this in to an unsigned long?

c++ mfc hex data-conversion unsigned-long-long-int
CMutex::Lock vs. CSingleLock::Lock

I've been tapped to support some legacy code, and I'm seeing some things that cause me to scratch my head …

c++ visual-c++ mfc thread-synchronization