C++Generic ProgrammingLearn C++Videos

Learn C++ With Constructing Generic Algorithms: Principles And Practice By Ben Deane (CPPCon 2020) Video

This video explores how to make your own algorithms. Starting with the raw loop that solves a nontrivial problem and turn it into a generic algorithm without removing the ability to perform. It will make you understand algorithm patterns and how to organize the pattern. You will also be inspected where existing algorithms fall short, including slight changes or wrappings that gives extra…
Read more
C++Language FeatureLearn C++

Learn To Copy Excel Clipboard To A Windows StringGrid In Modern C++

Clipboard, also called as the paste buffer, is is a buffer which operating systems provide to copy things (texts, bitmaps, tables etc.) for short term and transfer within and between application programs. The clipboard is usually temporary and unnamed, and its contents reside in the computer’s memory. In C++ Builder there are good components to use Excel forms, excel supported Grid…
Read more
C++Language FeatureLearn C++

Learn To Modernize Appearance Of Multi-Platform C++ Builder FMX Applications By Using Styles

Syles are sets of graphical details that define the look and feel of a application visually and they are one of most beautiful and useful UI feature of RAD Studio, that makes your UI elements skinned with professionally designed with different Styles. Official Styles are designed by Embarcadero’s Designers and other there are other 3rd party Styles, also users may generate their own styles.
Read more
C++ComponentsDatabaseLanguage FeatureLearn C++

Learn To Use MySQL Database Connections On Windows With MyDAC Components

In this post we would like to give a very simple example to connect to a MySQL database in C++ Builder with MyDAC Component.MySQL is one of the world’s most popular open source database and it is very easy and very useful touse small to large scale databases. MySQL has MySQL Service and different editions ( Enterprise, Standard, Classic, Cluster CGE and Embedded versions). MySQL…
Read more