The Microsoft Foundation Class Library (MFC) is a C++ framework for Windows GUI programming.
129
votes
22answers
35k views
Qt versus WPF/.NET [closed]
My company is trying to make the decision between using Qt/C++ for our GUI framework or migrating to .NET and using WPF. We have up to this point been using MFC. It seems that .NET/WPF is ...
56
votes
15answers
7k views
Qt goes LGPL! On Windows, is it good enough to use instead of MFC? [closed]
I just read a story I was hoping to read since Nokia bought Trolltech. Qt is going LGPL in March!
This is awesome news.
Who uses Qt for Windows? Does it effectively replace something like MFC? ...
34
votes
6answers
18k views
App does not run with VS 2008 SP1 DLLs, previous version works with RTM versions
Since our switch from Visual Studio 6 to Visual Studio 2008, we've been using the MFC90.dll and msvc[pr]90.dlls along with the manifest files in a private side-by-side configuration so as to not worry ...
28
votes
10answers
35k views
Private and Protected Members : C++
Can someone enlighten me as to the difference between private and protected members in classes? I understand from best practice conventions that variables and functions which are not called outside ...
28
votes
5answers
42k views
How to convert CString and ::std::string ::std::wstring to each other?
CString is quite handy, while std::string is more compatible with STL container.
I am using hash_map. However, hash_map does not support CString as key, so I want to convert CString into std::string.
...
26
votes
4answers
28k views
LPCSTR, LPCTSTR and LPTSTR
What the difference between LPCSTR, LPCTSTR and LPTSTR?
Why do we need to do this to convert a string into a LV / _ITEM structure variable pszText:
LV_DISPINFO dispinfo;
dispinfo.item.pszText = ...
25
votes
15answers
2k views
Ever done a total rewrite of a large C++ application in C#? [closed]
I know Joel says to never do it, and I agree with this in most cases. I do think there are cases where it is justified.
We have a large C++ application (around 250,000 total lines of code) that uses ...
21
votes
3answers
2k views
Creating a professional-looking (and behaving!) form designer
When I began programming (some 10+ years ago), three things amazed me:
Compilers/interpreters (back then I knew them as "programs that make my programs work", often followed by the qualifier ...
20
votes
6answers
13k views
How do I decide whether to use ATL, MFC, Win32 or CLR for a new C++ project?
I'm just starting my first C++ project. I'm using Visual Studio 2008. It's a single-form Windows application that accesses a couple of databases and initiates a WebSphere MQ transaction. I basically ...
19
votes
13answers
3k views
Why STL containers are preferred over MFC containers?
Previously I used to use MFC collection classes such CArray and CMap. After a while I switched to STL containers and have been using them for a while. Although I find STL much better, I am unable to ...
19
votes
3answers
3k views
What's the fundamental difference between MFC and ATL?
tl;dr:
Assuming I am only using them for "normal" GUI programs (no COM, no ActiveX, nothing fancy), what is the fundamental difference I will see between ATL and MFC, to help me figure out which one ...
18
votes
10answers
3k views
Where is a good place to start programming GUIs for windows?
I have experience writing console and network client/server apps in C and C++, but I know next to nothing about using the win32 visual API, MFC, QT, WxWidgets, etc. Where is a good place to start, ...
17
votes
5answers
3k views
What are some techniques for migrating a large MFC application to WPF/.NET?
I am currently working on a very large legacy MFC MDI application. It has a large number of UI elements - dockable toolbars, custom tree controls, context menus, etc. It is an image processing ...
17
votes
7answers
4k views
Best way to design for localization of strings
This is kinda a general question, open for opinions. I've been trying to come up with a good way to design for localization of string resources for a Windows MFC application and related utilities. My ...
16
votes
9answers
10k views
C++ MFC vs .NET?
My colleagues are using Visual Studio 2002 and uses the C++ MFC. I am developing in C #.
It has not been any problems before, but now questioning our customers if we really should develop in ...
16
votes
7answers
5k views
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 the window around, then issues a WM_SIZE to the window being resized.
Thus, in a dialog ...
15
votes
5answers
29k views
Convert CString to const char*
How do I convert from CString to const char* in my Unicode MFC application?
15
votes
7answers
3k views
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 to release a new version of MFC in 2010 and it really struck me as odd - I thought MFC was dead (no ill ...
14
votes
14answers
3k views
Is There Still A Case For MFC
What are the compelling features of MFC? Why would you select it for a new project?
14
votes
5answers
1k views
Disallowing creation of the temporary objects
While debugging crash in a multithreaded application I finally located the problem in this statement:
CSingleLock(&m_criticalSection, TRUE);
Notice that it is creating an unnamed object of ...
13
votes
10answers
8k views
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 me down, they no longer put effort into maintaining them or developing them. We ...
13
votes
8answers
6k views
Is there an auto-update framework for C++/Win32/MFC (like Sparkle)? [closed]
I've decided to add auto-update functionality to one of my applications and was looking for any existing solutions that compare the current running version with the latest version that is then ...
12
votes
19answers
1k views
Developing as a programmer
I have been learning C++ for three months now and in that time created a number of applications for my company. I consider myself fairly comfortable with C++ / MFC and STL, however I don't just want ...
12
votes
1answer
6k views
Which Font is the default for MFC Dialog Controls?
The picture below (enlarged, so you better see the differences) shows Font differences between dynamically created Edit controls (the upper two examples) and Edit Controls created from the Dialog ...
12
votes
6answers
1k views
Is GetLastError() kind of design pattern? Is it good mechanism?
Windows APIs uses GetLastError() mechanism to retrieve information about an error or failure. I am considering the same mechanism to handle errors as I am writing APIs for a proprietary module. My ...
12
votes
7answers
4k views
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 inside the message pump. For example, we created a test MFC ...
12
votes
8answers
2k views
MFC resources / links
I am about to reenter the MFC world after years away for a new job. What resources to people recommend for refreshing the memory? I have been doing mainly C# recently.
Also any MFC centric websites ...
12
votes
7answers
6k views
How Can I Monitor Which Window Currently Has Keyboard Focus
Is there a way to track which window currently has keyboard focus. I could handle WM_SETFOCUS for every window but I'm wondering if there's an alternative, simpler method (i.e. a single message ...
12
votes
3answers
983 views
odd handle leak
My application (base application is MFC interop with C++/CLI but it also contains a lot of C#, Windows Forms, WPF) has has a handle leak. Shortly after application start I can see the handle count in ...
12
votes
1answer
178 views
What is the correct solution to support IAccesible interface for caret movement in text editors?
I want to implement a text editor from scratch which supports IAccessible interface. I am using MFC and Win32 API.
When the caret position change in the standard text editors like Notepad, the ...
12
votes
1answer
748 views
C# .NET User Control inside native app. Resource chain problems
I am wrapping up an MFC extension DLL (MFCXDLL_2) to make its functionality available for C# programmers.
The wrapper is a “Regular DLL using shared MFC DLL” with “Common Language Runtime Support ...
11
votes
9answers
4k views
C++ string memory management
Last week I wrote a few lines of code in C# to fire up a large text file (300,000 lines) into a Dictionary. It took ten minutes to write and it executed in less than a second.
Now I'm converting ...
11
votes
6answers
4k views
Unit testing MFC UI applications?
How do you unit test a large MFC UI application?
We have a few large MFC applications that have been in development for many years, we use some standard automated QA tools to run basic scripts to ...
10
votes
1answer
7k views
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 the OnInitDialog handler?
(I know how to add it manually, but that's a pain in the long run).
...
10
votes
3answers
2k views
What's with the “Afx” in StdAfx.h?
I'm just curious what Afx stands for. And what about Fx in FxCop?
10
votes
2answers
6k views
Higher color depth for MFC toolbar icons?
I was wondering how to make a toolbar in MFC that used 24bit or 256 colour bitmaps rather than the horrible 16 colour ones.
Can anyone point me in the direction of some simple code?
Thanks
10
votes
2answers
2k views
Changing image of a menu button in a CMFCToolbar
I have a menu button inside a CMFCToolbar and I would like to replace the bitmap of the button each time a different entry is selected in the menu as each entry has its own icon.
I succeed in ...
9
votes
10answers
10k views
Best UI development framework on windows? [closed]
I have been developing UI in Win32/MFC, but developing cool UI in Win32/MFC is very difficult and time consuming. Please note, I always want my code to be platform independent, So I prefer programming ...
9
votes
6answers
34k views
9
votes
7answers
8k views
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 the relevant MFC DLLs. This caused me a few issues (DLL hell!) and I switched to statically linking ...
9
votes
6answers
905 views
Switching to WPF. Is it time?
I'm considering switching from MFC to WPF.
My first concern is that there are too many users who don't have .NET with WPF installed yet. Can anybody point to a source containing the WPF penetration ...
9
votes
6answers
13k views
How to create a resizable CDialog in MFC?
I have to create a dialog based application, instead of old CFormView type of design. But CDialog produces fixed-size dialogs. How can I create dialog based applications with resizable dialogs?
9
votes
4answers
1k views
What is the lifetime of a CWnd obtained from CWnd::FromHandle?
According to msdn, when I get a CWnd* with CWnd::FromHandle,
The pointer may be temporary and should not be stored for later use.
What is meant by "later use" is not clear to me. Is it only the ...
9
votes
2answers
413 views
Implementing bulk record fetching
At the start of my program, I need to read data from a MS Access database (.mdb) into a drop down control. This is done so that whenever the user types in that control, the application can ...
9
votes
3answers
2k views
Using a Qt-based DLL in a non-Qt application
Am I doing it right?
A client of mine has a group where I'm developing Qt-based client-server stuff with a lot of fun widget stuff and sockets.
Another group within the company wants to use a ...
8
votes
3answers
2k views
Run MFC program on Linux
I have a rather large MFC based program. I have been tasked to get it running on Linux. I have explained that this will require a re-write of the program either into straight C++ with STL (more ...
8
votes
5answers
3k views
Will VC++ MFC become obsolete in near future?
Normally people say MFC is little clumsy. It makes UI development slightly difficult to maintain since it has lot of auto generated code. It has good architecture (doc/view) but is not transparent ...
8
votes
6answers
1k views
Internationalization in MFC
It's finally (after years of postponing) the time to localize my app in a few other languages other than English.
The first challenge is to design the integration into my C++ / MFC application that ...
8
votes
2answers
3k views
Are “#define new DEBUG_NEW” and “#undef THIS_FILE” etc. actually necessary?
When you create a new MFC application, the wizard creates the following block of code in almost every CPP file:
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
and sometimes it also adds this:
#undef ...
8
votes
2answers
709 views
Adding MFC support to a Qt project
I have a Qt project and would like to use an external library that includes "afxstr.h".
Problem is that whenever I compile after linking to the lib and including their header, I get an error:
#error ...