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

learn more… | top users | synonyms

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?
29
votes
10answers
36k 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 ...
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 ...
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 = ...
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. ...
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 ...
0
votes
3answers
316 views

what does this mfc appliction “First-chance exception” exception mean?

First-chance exception at 0x01046a44 in Media.exe: 0xC0000005: Access violation reading location 0x00000048. First-chance exception at 0x75fdb9bc (KernelBase.dll) in MediaAnnotator.exe: 0x000006BA: ...
4
votes
2answers
8k views

Creating HBITMAP from memory buffer

I have an application which loads some blob data out of a database which can represent png formatted or raw binary data for various bitmaps and icons. This is being stored in a ...
2
votes
4answers
5k views

Compiling a MFC app from Visual Studio 2010 to 2012 RC results in LNK2038

My project is compiling and running OK in debug and release modes in VS 2010. Today I tried to compile it with VS 2012 and I got this error : 1> Generating Code... 1>pcrecppd.lib(pcrecpp.obj) ...
2
votes
1answer
858 views

Visual Studio 2010 hangs when I debug method AttachThreadInput()

I have Visual Studio 2010 Ultimate SP1 and my project is based on MFC. When I debuging next code of my project Visual Studio is hangs: CWnd* _window = CWnd::FromHandle(_hwnd_); if (_window) { ...
1
vote
3answers
2k views

Embed image in code, without using resource section or external images

I'm looking for a way to embed an image in a library (Windows-only). I don't want to go the 'traditional' way of putting it in the resources (because of special circumstances that make it not so ...
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 ...
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 ...
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
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
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
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 ...
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 ...
7
votes
3answers
3k views

Unicode RTF text in RichEdit

I'm having trouble getting a RichEdit control to display unicode RTF text. My application is Unicode, so all strings are wchar_t strings. If I create the control as "RichEdit20A" I can use e.g. ...
6
votes
1answer
3k views

How do I host WPF content in MFC Applications?

I'm going to answer my own question here because I spent a few hours piecing this together and wanted to share what I found in the hope that I will save someone else the digging. There is an MSDN ...
6
votes
7answers
2k views

Windows C++ dialog resizer class

I'm looking for a really good dialog resizer class that will stretch and shrink individual items as needed as the screen is resized. Stephan Keil has a good one (DlgResizeHelper) which basically ...
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 ...
7
votes
3answers
9k views

How to detect a CListCtrl selection change?

I want to execute some code when the user selects a row in a CListCtrl (report view, I don't care about the other viewing modes). How do I catch this event? is there some message I can map or a ...
4
votes
5answers
979 views

OpenGL suppresses exceptions in MFC dialog-based application

I have an MFC-driven dialog-based application created with MSVS2005. Here is my problem step by step. I have button on my dialog and corresponding click-handler with code like this: int* i = 0; *i = ...
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 ...
4
votes
2answers
7k views

DWORD_PTR, INT_PTR, LONG_PTR, UINT_PTR, ULONG_PTR When, How and Why?

I found that Windows has some new Windows Data Types DWORD_PTR, INT_PTR, LONG_PTR, UINT_PTR, ULONG_PTR can you tell me when, how and why to use them?
3
votes
4answers
2k views

“Speech bubble” notifications

I'm trying to get a notification to pop up something like these bubbles in an MFC application: I'm currently making an interface mockup in C# to show some stakeholders, so it would be nice to ...
2
votes
5answers
4k views

How to set default font for all the windows in a Win32 Application?

I want all the controls (edit,list control, etc) in my application to be having the same font which is not the system default. How do i do this? Is there any Win32 API that sets the application ...
1
vote
1answer
801 views

How to Run(launch) elevated command prompt programmatically in Vista

I'm trying to install some files from a batch file (through code). However the command should only run as "elevated command" in Vista and Windows 7 Is there any way this can be done programitically? ...
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 ...
6
votes
5answers
1k views

Getting Default browser

How can I determine which is the default browser in my system programatically. The code must be developed using vc++ Is there any API for this ? Where in the registry is the default browser value ...
4
votes
3answers
2k views

How to read MS Word documents using MFC?

I'm working on a project using VC++/MFC and I need to read data from Word documents. I've Googled, but can't find any viable solutions. How can I get started in this MFC? Any help would be ...
3
votes
1answer
806 views

Disable aero fade-in effect on dialog

I have a modal dialog I'm creating with MFC. When it appears, the Aero theme does it's fade-in transition for a new window appearing. In my particular case I'm switching immediately from one dialog ...
1
vote
4answers
2k views

error using CArray

so, i am trying to use CArray like this : CArray<CPerson,CPerson&> allPersons; int i=0; for(int i=0;i<10;i++) { allPersons.SetAtGrow(i,CPerson(i)); i++; } but ...
-1
votes
1answer
421 views

Why does GetSafeHwnd() return zero in an ActiveX control?

I have developed a MFC Activex control which is windowless and invisible in runtime, while i assumed that basically an activex is a control that would manipulate a windows handle, i have used ...
130
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? ...
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, ...
16
votes
5answers
29k views

Convert CString to const char*

How do I convert from CString to const char* in my Unicode MFC application?
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 ...
7
votes
6answers
3k views

Future proofing a large UI Application - MFC with 2008 Feature pack, or C# and Winforms?

My company has developed a long standing product using MFC in Visual C++ as the defacto standard for UI development. Our codebase contains ALOT of legacy/archaic code which must be kept operational. ...
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 ...
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 ...
7
votes
4answers
12k views

UTF-8, CString and CFile? (C++, MFC)

I'm currently working on a MFC program that specifically has to work with UTF-8. At some point, I have to write UTF-8 data into a file; to do that, I'm using CFiles and CStrings. When I get to write ...
21
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 ...
6
votes
7answers
7k views

What is a good MFC starting book? [closed]

Hey all. Any one have any recommendations for a great MFC book that I can learn? I have background in .NET and C++. Thanks!
4
votes
2answers
4k views

Dynamic menu using mfc

I would like to add a menu item to my main menu and then populate it with items at run time. How would I do this? And besides adding items how would I have a message map entry for them since I do not ...
3
votes
1answer
1k views

Fit 3d model inside a window

I want to display models of different sizes fitted into a view, so that the whole model is visible inside the screen. What is the best way to do it? I tried scaling (using glScale) the model using ...
2
votes
2answers
1k views

UpdateLayeredWindow and DrawText

I'm using UpdateLayeredWindow to display an application window. I have created my own custom buttons and i would like to create my own static text. The problem is that when i try to draw the text on ...

1 2 3 4 5 8