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
C++Introduction to C++Language FeatureLearn C++

How To Use The HandleMessage Method In Windows Applications

In this post, you’ll learn how to use the HandleMessage method, as well as how an application can receive clicks on components when it’s in a loop, and how to receive user input while performing heavy iterations while keeping the user interface responsive. By learning how to use HandleMessage Method in Windows Applications. It will help you to easily build C++ applications using the…
Read more