C++DatabaseGame DevelopmentLanguage FeatureLearn C++

This Is How To Visualize Kinematics In Windows C++ Apps

In this post, you’ll learn what kinematics is, how to use it in programming, draw kinematic drawings in C++, and how to simulate kinematic animations in a C++ app. What does Kinematics mean? Kinematicsis a subfield of physics; it describes themotionof points, rigid bodies, and systems of these rigid body groups without considering the forces that cause them to move.
Read more
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++Language FeatureLearn C++

How to Create a New 64bits VCL Component in C++ or Delphi

How can I create a new 64bits VCL Component? How can I use the New Component menu? How can I use and fill the New Component Wizard for the 64bits VCL applications? What is a Component in C++? What is an Object in C++? Let’s answer these questions. Note that this article uses C++ Software for its example, but the process for Delphi applications is exactly the same. One of the most…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

How To Use Smart Pointers For Dynamic C++ Memory Management

In computers, all data and operations during runtime are stored in the memory of our computers, IoTs, or in other microdevices. This memory is generally a RAM (Random Access Memory) that allows data items to be read or written in almost the same amount of time, irrespective of the physical location of data inside the memory. In this post, you’ll learn how to use Smart Pointers for Dynamic C++…
Read more