This post about listing String and displaying methods as fast as possible in Modern C++, in C++ Builder FireMonkey projects. In general if you have many String additions to you component, you must use BeginUpdate() and EndUpdate() methods of that Class member to do these operations faster. In normal way most of Components are also doing this addition method faster.
Memo and StringLists…
The Main Function of a C++ Program
December 27, 2020
The source code written in C++ must be compiled (i.e. translated to the machine code) by one or another compiler such as Embarcadero RAD Studio C++ compilers before in can be runned. In general, there are two types of the resulting machine code: library and main executable…
Traversing sequences without writing explicit loops
December 26, 2020
The posts General Loop Statements in Modern C++ and Range-for-statement in modern C++ cover ways to write explicit loops. But explicit loops can be tedious to write and, what is more important, – harder to read, because the resulting code requires to spend the extra time by others in order to understand what is going on in the explicit loop. As alternative, the C++ standard library provides…
How To Import FANN Library For C++ Builder Windows Projects
December 26, 2020
This article is about to help you on implementing an Artificial Neural Network by using FANN Library developed by Steffen Nissen. It supportsmore than 20+ programming languages (http://leenissen.dk/fann/wp/language-bindings/) including Delphi and C++ Builder. You can…
General Loop Statements in Modern C++
December 25, 2020
Each loop statement in C++ has its loop body which is executed repeatedly until the loop condition expression that yields a loop condition becomes false (otherwise, the loop will run “forever”). The statement continue can be used to interrupt the current…
Learn How To Create A Dev C++ Dynamic Link Library For Windows
December 24, 2020
Welcome to our Embarcadero Dev-C++ video series. In this video tutorial you can learn about creating DLL (Dynamic Link Library) with C programming language.
Since Dynamic Link Libraries are one of the essential components of Windows application development, you should…
How To Create A Dev C++ Static Library For Windows
December 23, 2020
Welcome back to our Embarcadero Dev-C++ videos series. In this session is about creating C++ static libraries.
Static libraries are collections of object files that are linked together when a file gets compiled into an executable.
In this tutorial you can…
Colors In Modern C++ For Windows Development
December 22, 2020
Colors are very important in application development on both displaying and editing/analyzing operations. All images (pictures, photos, drawings, icons, emojis, all UI elements …) are consist of pixels in colors. You just need to change the colors of a pixel to draw a beautiful drawing or to edit a photo. You can set your drawings, bitmaps, images, you can create colorful BMP, JPG, PNG…