36
votes
15answers
3k 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? …
18
votes
14answers
3k views
Qt vs WPF/.NET
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 …
12
votes
14answers
907 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 …
12
votes
9answers
1k 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, …
11
votes
19answers
1k views
Developing as a programmer
Hi all,
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 …
10
votes
9answers
1k 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 …
9
votes
7answers
1k 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 …
8
votes
5answers
345 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
13answers
917 views
Is There Still A Case For MFC
What are the compelling features of MFC? Why would you select it for a new project?
7
votes
4answers
410 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 …
7
votes
6answers
1k 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 …
7
votes
5answers
1k 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 …
7
votes
8answers
960 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 …
6
votes
5answers
296 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 …
6
votes
4answers
6k views
How to Convert CString and ::std::string ::std::wstring to each other?
CString is quit 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 wish I could convert CString into …
