Learn C++

How To Open Legacy C++ .mak Files With The Latest RAD Studio

In the last 40 years of there have been many changes in hardware and software. Improvements and changes are carried out in very short time spans and they can quickly affect a lot of things in your older applications. C++ Builder is generally friendly with old XE project files versions, RAD Studio 10.x.x versions, and RAD Studio 11. While changes have happened and things have evolved, we can still…
Read more
C++ComponentsLanguage FeatureLearn C++

How To Use The MS Edge Browser In A Native Windows C++ App

In C++ Builder, you can easily develop your web browser or you can add web browsing ability to your applications. This means users can safely surf your link by using Web Browser components. Developing a full Web Browser may take a lot of time, instead of this, there are many components and libraries that we can use in C++ development. In RAD Studio, C++ Builder11 and 10.4.x, there is a new…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Delete A Directory In C++ Builder On Windows

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. These methods are easy to remember, very…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Understand File And Folder Paths In Programming

In this post, you’ll get answers to these questions: What is the difference between the Dir, Directory and the Folder terms?What is a Drive? What is a Directory?What is a Path?What does Full Path mean?What does Absolute Path mean?What is the Current Path?What is a Short Path?What does Relative Path mean? By learning how to understand file and folder paths in programming, it will help you…
Read more