Modifying the System Menu in MFC

Introduction
The system menu is a standard feature of every Windows application. It is managed by Windows so normally we don’t have to worry about it at all. However sometimes it is nice to be able to modify that menu according to our own program with things that Windows can’t automatically do for us.
As my main [...]

Popularity: 5% [?]

Operator Overloading in C++

Definition
This can be a weird subject for some, especially those with a strong Java background, or another language that doesn’t support this feature. It can be confusing even for excellent programmers. But it is a strong feature of C++ that, if mastered, can yield some increased productivity in programming.
We all know that an operator can [...]

Popularity: 6% [?]