The Microsoft Foundation Class Library (MFC) is a C++ framework for Windows GUI programming.

learn more… | top users | synonyms

86
votes
23answers
24k 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 ...
48
votes
14answers
6k views

Qt goes LGPL! On Windows, is it good enough to use instead of MFC?

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? ...
27
votes
6answers
12k 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 ...
23
votes
16answers
2k views

Ever done a total rewrite of a large C++ application in C#?

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 ...
20
votes
3answers
861 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 ...
17
votes
5answers
26k 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. ...
16
votes
13answers
2k 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 ...
16
votes
10answers
2k 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, ...
15
votes
7answers
2k 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 ...
14
votes
4answers
9k 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 = ...
13
votes
7answers
3k 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 ...
13
votes
6answers
6k 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 ...
13
votes
14answers
2k views

Is There Still A Case For MFC

What are the compelling features of MFC? Why would you select it for a new project?
12
votes
1answer
235 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 ...
12
votes
3answers
510 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
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 ...
11
votes
5answers
2k 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 ...
11
votes
9answers
3k 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
8answers
4k views

Is there an auto-update framework for C++/Win32/MFC (like Sparkle)?

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 ...
10
votes
5answers
736 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 ...
10
votes
5answers
15k views

Convert CString to const char*

How do I convert from CString to const char* in my Unicode MFC application?
10
votes
2answers
1k 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 ...
10
votes
2answers
4k 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
9answers
12k 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 ...
10
votes
9answers
6k 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 ...
9
votes
3answers
326 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 ...
9
votes
6answers
585 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
3k 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 ...
9
votes
7answers
4k 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 ...
8
votes
6answers
932 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 ...
8
votes
6answers
877 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 ...
8
votes
9answers
3k 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 ...
8
votes
4answers
583 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 ...
8
votes
1answer
4k 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). ...
8
votes
7answers
5k 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 ...
8
votes
5answers
649 views

i18n-able way to get number ordinal in C++/MFC on Windows? (1->1st, 2->2nd, etc.)

Is there an easy way to convert the number 1, 2, 3, ... to "1st", "2nd", "3rd", ..., and in such a way that I can give the function a language and have it return me the correct form for the language ...
8
votes
7answers
1k 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 ...
7
votes
3answers
264 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 ...
7
votes
5answers
483 views

Poor performance with DrawText on Win7 x64

I noticed in an MFC application I'm developing that while dragging the scroll bar to smoothly scroll down the document, the framerate drops to choppy levels when a block containing about a paragraph ...
7
votes
1answer
162 views

Memory leak while using emoticons on CRichEditCtrl

I'm developing a text editor class (for a chat application) based on CRichEditCtrl (MFC) with emoticon support. After I load the emoticon's bitmap, I use the function OleCreateStaticFromData to ...
7
votes
3answers
785 views

VC++ / C++ High performance Multithreaded GUI considerations for trading

I'm interested in seeing what considerations experienced developers make when developing high performance multithreaded GUI's for a windows platform. I ask this question in the context of developing ...
6
votes
1answer
146 views

CDialog memory leaks in VC10

We are upgrading from VC8 to VC10 and have found a number of memory leaks that seem to be CDialog related. The simplest example of this is demonstrated with the following code using a CDialog that ...
6
votes
2answers
222 views

atoi() with other languages

I am working on a internationalization project. Do other languages, such as Arabic or Chinese, use different representations for digits besides 0-9? If so, are there versions of atoi() that will ...
6
votes
1answer
396 views

MFC application and a non-MFC modal dialog

I'm writing a Win32 plug-in DLL for a third-party MFC app. The DLL needs to display a modal dialog. When I do this using DialogBox() or other plain Win32 API (e.g. I tried to write my own modal loop), ...
6
votes
6answers
534 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 ...
6
votes
4answers
238 views

Cold startup optimization

I tried to search, but so far with no luck. Does anyone know a good resource how one should do cold start optimizations? The app in question is C++/MFC app, compiled with VS2010, full version, with ...
6
votes
14answers
1k views

Language to write a Windows application that doesn't take up a lot of space

I need to write a Windows XP/Vista application, main requirements: Just one .exe file, without extra runtime, like Air, .Net; posstibly a couple of dlls. Very small file size. The application is ...
6
votes
5answers
660 views

How can I transform a string into an abbreviated form?

I want to fit strings into a specific width. Example, "Hello world" -> "...world", "Hello...", "He...rld". Do you know where I can find code for that? It's a neat trick, very useful for representing ...
6
votes
4answers
3k views

CSTRING to char *

We are using the CString class throughout most of our code. However sometimes we need to convert to a char *. at the moment we have been doing this using variable.GetBuffer(0) and this seems to work ( ...
6
votes
3answers
402 views

How up to date is OpenStep as a development Environment?

Long time ago, the Game Developer magazine published an article about ID Software and their DOOM game. In the article ID states that they used a NeXT Step machine for development with GNU GCC cross ...

1 2 3 4 5 69