Language
Platform
Any
License
Any
This article describes how to port a C++ Builder (6.0) application to Qt Creator. The main advantage of doing so, is that the Windows-only application becomes cross-platform.
This article uses...
This article compares the C++ Builder 6.0 and Qt Creator 1.3.1 IDE's from the perspective of a beginning programmer: which IDE is simpler to learn? And is the IDE that is simplest to learn be the IDE...
The article describes the main steps which should be performed to correctly port 32-bit Windows applications on 64-bit Windows systems. Although the article is meant for developers using C/C++ in...
In this tutorial, explore the Eclipse C Development Tooling (CDT) project and how it allows you to work with C- and C++-based projects. Furthermore, learn how to install open source tools to help...
The article is devoted to the first acquaintance with the PC-Lint 8.0 static analyzer of C++ code. The process of the tool installation and its initial setting is described.
Aside from Java IDE, Eclipse can also work with PHP, Ruby, and Groovy, C, and C++. In this article, you will learn how to build and develop applications in C++ using the Eclipse C/C++ Development...
I'm about to make a confession. Even though I've written several books and articles about C++, I have a secret: C++ isn't my favorite language. I have lots of languages that I use, each one for...
Any Visual Basic Programmer have by now added icon to the status area in very simple steps. But doing the same in Visual C++ is not so straight forward. Here I delineate the steps to undertake for...
With the release of MS Visual Studio 2005 last November, Windows Mobile 5.0 at the very end of its beta cycle, and a proliferation of WinCE 5.0-powered devices, it is time to commence considering to...
With the release of MS Visual Studio 2005 last November, Windows Mobile 5.0 at the very end of its beta cycle, and a proliferation of WinCE 5.0-powered devices, it is time to commence considering to...
It has been jokingly suggested that when a C++ programmer is asked how to accomplish a given task, he or she will provide a list of a dozen or more potential solutions, and then proceed to outline...
There are a number of changes that you can expect to see in Microsoft Visual C++ 2005. In this article, I present a number of changes that can already be found in Visual C++ 2005 that you may...
The question: How can I display special characters (such as ? and ? ...) in a list control/edit box has come up a few times in the Codeguru Visual C++ Programming forum. There was a particular post...
The types within the System.CodeDom namespace are extremely important to most Managed C++ applications, regardless of whether the code actually uses these types directly. Wizard-generated code has...
With all the changes to the C++ language, improvements in the IDE have not been given a great deal of attention. Despite the lack of publicity, the IDE improvements are quite significant. They will...
This article is simple a 'How To' in creating a COM object in Visual C++ for use in COM-aware languages such as Visual Basic. In addition, the library that is created is a Large Integer package.
Usually the code is executed one line at a time in ascending order. Using functions we can disrupt this flow but there are also other tools available, such as "for", "while" and "do while" statements...