C++

Convert CSV file to TFDMemTable format JSON file.

Author: h.mohri Convert fromCSVfile to “JSONfile” of “TFDMemTable format”. This program usesC++Builder 10.2 Tokyo Release 1. include #include <iostream> #include <fstream> #include <string> #include <codecvt> #include <FireDAC.Comp.Client.hpp> #include <FireDAC.Stan.StorageJSON.hpp> #include…
Read more
C++

C++ Builder Header Dependencies

Why should you care about header dependencies in C++? One reason is header dependencies can have an impact on building, refactoring, testing and on the structure of your software. And reducing header dependencies in C++ also reduces compile time dependencies – the…
C++

Try condition_variable using C++Builder(C++11).

Author: h.mohri std::condition_variable is a class for waiting for thread execution until the condition is satisfied.Used in combination with std::mutex. I tried the wait() function in std::condition_variable.This is combined withstd::unique_lock<std::mutex>. I…
C++

April 2017 RAD Studio 10.2 Hotfix for Toolchain Issues

We are pleased to release a hotfix for RAD Studio 10.2. This hotfix addresses: debugger issues for Android, iOS, and Linux; Delphi Win64 compiler issues; a C++ RTL issue addressing a crash on exit; a security issue in the C/C++ RTL. Our thanks to Łukasz Wyporek for notifying us of this issue. You can find full details about each issue in the readme and download page on CodeCentral. We also have…
Read more
C++

Mixing Delphi and C++

Author: NatSam Would you like to add C++ to your Delphi application? Or add Delphi code to your C++ application? Here’s how. One thing you might not know is how closely integrated the C++ and Delphi languages are in RAD Studio. You can compile a single application in a…
C++

Learn To Quickly Use NoSQL With MongoDB And FireDAC In Delphi And C++Builder

In CodeRageX there were two sessions around MongoDB. The first session is the basics and the second session is more advanced topics dealing with MongoDB.MongoDB is an open-source NoSQL document database. The first session covers a MongoDB overview, JSON and BSON, the FireDAC MongoDB API wrapping classes, and the FireDAC MongoDB datasets.The second session covers indexing, query options…
Read more
C++

C++ Boot Camp Complete Replay

The complete replays for the C++ Boot Camp are available online, including downloads, slides and the Q&A log. A wealth of information for C++Builder. Content for each day . . . Day 1 –Building your first application with C++Builder Day 2…
C++

C++ Boot Camp: Game Development

Author: Aidan K7359 11-August-2016 / Day 4 of C++ Boot Camp is C++ Game Development hosted by Eli M., MVP, Developer and Entrepreneur from FMXExpress.com Four different games with classic game mechanics will be demonstrated. We will be also be covering topics such as App Tethering, utilizing TFrames to build your UI, using TRectangle as a light weight image object, accessing the device motion…
Read more