C++DatabaseIntroduction to C++Language FeatureLearn C++

How To Make Visually Stunning Windows Charts In C++

RAD Studio, C++ Builder has a free VCL chart component which is called TeeChart standard, and FMX version which is called TeeChart Lite that comes with the RAD Studio officially, including RAD Studio 10.4.x and 11. x versions. For more professional applications, there is TeeChart Pro by Steema has an affordable 2021 pricing list on these options. TeeChart Pro charting component library offers…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Get Windows Environment Variables In C++ Builder

C++ Builder has a lot of specific methods in its SysUtils library that are included in the VCL and FMX libraries. Some of these are grouped as Path Manipulation Routines which allow users to edit, extract, get and set drive name, directory name, file name, file extensions. These methods are combined in Vcl.FileCtrl, System.IOUtils,  System.SysUtils libraries. These all methods are easy to use…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Check If A Directory On Windows Is Empty In C++?

C++ has a lot of great libraries to operate on every case, on every item. We can create or delete directories by using System Commands that we explained before in this post or we can use C++ standard library methods. In C++ Builder, we can use both of them and we can also use Disk And Directory Support Routines to create or remove directories or to get information about disks, directories, and…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Use ProcessMessages Method In Windows Applications

In this post, you’ll learn how to use the ProcessMessages method, What about if I have a loop and the app’s GUI becomes unresponsive at runtime while the loop is running? How can I receive clicks on the components when I have a loop? How can I receive user inputs during code with heavy iterations?By learning how to use ProcessMessage Method in Windows applications, it will help you to…
Read more