C++Introduction to C++Language FeatureLearn C++

How To Make A New Windows FMX Component In C++

One of the most powerful features of the C++ Builder is its own components that can be used with or without a visual representation. Components make programming easy, you can do many operations easily without knowing low-level coding. Every component that you drag into your forms is an object of that component class. For example TEdit is a Class Type, a Component, and Edit1 is an Object from the…
Read more
C++ComponentsDatabaseIntroduction to C++Language FeatureLearn C++

How Do I Easily Connect To A MySQL Database In C++?

We have posts that explain how you can connect to different databases like MySQL, Interbase, PostgreSQL, MSSQL with different components like FireDAC, MyDAC, etc. If you need more help about this topic Please check here https://learncplusplus.org/category/database/ about these database posts. In this post, you’ll get answers to these questions: How can I use visual bindings with a…
Read more
C++Generic ProgrammingIntroduction to C++Language FeatureLearn C++

5 Things You Need To Know About Optimization In C++ Builder

In this post, you’ll get answers to these questions: How can I increase arithmetic speed in C++ Builder?How can I optimize my C++ Builder application?Can I use -O0, -O1, -O2, or -O3 optimization options in Embarcadero’s C++ compiler, the same as in GNU C/C++ and other C++ compilers?Where can I find more information about C++ optimization? Arithmetic Speed is important in…
Read more
C++Introduction to C++Language FeatureLearn C++

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

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