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
862 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 ...
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 ...
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 ...
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
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
327 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
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 ...
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
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
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
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
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
7answers
2k views
Avoiding “(Not Responding)” label in windows while processing lots of data in one lump
I occasionally need to process a large amount of data from one package off the network, which takes sufficiently long that when the user tries to interact with the application windows adds the "(Not ...
6
votes
1answer
3k views
Which is preferred CTabCtrl vs. CPropertSheet in MFC?
I don't know how to use both of them. So a sample code with pros and cons is perfect. Which one is preferred? Why?
6
votes
15answers
1k views
Which platform should I use : native C++ or C#?
I want to develop a windows application. If I use native C++ and MFC for user interface then the application will be very fast and tiny. But using MFC is very complicated. Also If I use C# then the ...
6
votes
3answers
1k views
ASSERT vs. ATLASSERT vs. assert
I am refactoring some MFC code that is littered with ASSERT statements, and in preparation for a future Linux port I want to replace them with the standard assert. Are there any significant ...
6
votes
10answers
6k 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 ...
6
votes
4answers
4k views
How to draw in the nonclient area?
I'd like to be able to do some drawing to the right of the menu bar, in the nonclient area of a window.
Is this possible, using C++ / MFC?
6
votes
14answers
705 views
Do you know of a good program for editing/translating resource (.rc) files?
I'm building a C++/MFC program in a multilingual environment. I have one main (national) language and three international languages. Every time I add a feature to the program I have to keep the ...
6
votes
6answers
2k 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. ...
5
votes
2answers
107 views
Passing STL and/or MFC objects between modules
I have a rather large code base that is highly modular (lots and lots of plugins), and very often need to pass strings and such between modules. For reference, the code:
only compiles in MSVC/Visual ...
5
votes
1answer
113 views
How to set Administrative right Icon on MFC Dialog Button?
I am creating an application in MFC using Visual Studio 2008 in windows 7. My application starts and stops a service which requires administrative access. When application starts it don't have ...
5
votes
2answers
163 views
How to drag & drop lots of files without taxing system resources?
One of the features that the program that I'm working on is the ability to drag objects from its main window and drop them onto Windows Explorer as files.
To do this, we override ...
5
votes
2answers
120 views
In MFC CArray, what are reasons to use different default template type?
The MFC CArray class has two template parameters (from MSDN):
template < class TYPE, class ARG_TYPE = const TYPE& >
class CArray
...
The default parameter for ARG_TYPE is const ...