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.

64 bit tools like BoundsChecker & Purify

For many years I have used two great tools BoundsChecker & Purify, but the developers of these applications have let …

c++ mfc bounds-checker purify
MFC: How to change color/boldness of inidividual rows of ListCtrl?

Using MFC and Visual Studio 2010 C++. I need a way to make certain individual rows of a CListCtrl stand out (…

visual-c++ mfc row highlighting clistctrl
C++ LPCTSTR to char*

I am using visual studio 2010 MFC to build a C++ program. My program calls a DLL that is not apart …

c++ mfc char converter lpcstr
SendMessage and PostMessage which one is better to use?

searching the web for the difference between these two function calls, I've found that: The difference between these two API …

visual-studio-2010 performance mfc message-queue sendmessage
How do I force windows NOT to redraw anything in my dialog when the user is resizing my dialog?

When the user grabs a corner of a resizable window, and then moves it, windows first moves the contents of …

c++ mfc winapi resize flicker
How to enable the TRACE macro in Release mode?

The TRACE macro can be used to output diagnostic messages to the debugger when the code is compiled in Debug …

mfc macros trace
mfc tab control switch tabs

I created a simple tab control that has 2 tabs (each tab is a different dialog). The thing is that i …

c++ mfc cdialog
How can I get and set the 'read-only' property of an edit box?

How can I get and set the 'read-only' property of an edit box?

c++ visual-c++ mfc visual-c++-6
What are Windows "USER objects"

I'm trying to track down an issue in our MFC code that looks like a resource limitation issue. Memory and …

windows winapi mfc
PostMessage from WorkerThread to Main Window in MFC

I have a MFC application, which has a worker thread, what I want to do is to post message from …

multithreading user-interface mfc postmessage worker-thread