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…
How to use Android Service(TAndroidService) in C++Builder
April 30, 2017
Author: h.mohri
[Make a new project for Android service.]
File→New→Other
NewItems→Delphi Project→Android Service.
After making the above selection, click OK.
Select a “Local Service” and click OK.
TDM class that inherits TAndroidService will be…
New in 10.2: MariaDB Support
April 19, 2017
Author: Pawe Gowacki
One of the biggest new RAD Studio 10.2 Tokyo database features is support for MariaDB open-source relational database.
MariaDB is one of the most popular open-source SQL databases. It is a fork from MySQL database, after it has been acquired by Oracle…
10.2 Tokyo TJsonSerializer and JSON.Converters
April 4, 2017
Author: h.mohri
First declare with Pascal to use the converter and generics.
////
unit Unit2;
interface
uses
System.JSON.Converters, System.JSON.Serializers, System.Generics.Collections;
type
TListString = TList<String>;
TDictionaryStrStr = class(TDictionary<String, String>)
constructor Create; overload;
end;
TTJsonListConverterString =…
Author: h.mohri
Made a DLL with Visual C++. And I tried to use it in C++Builder. Common is 64 bits.
First I will make a VC++ side DLL.
////
extern "C" CONSOLEAPPLICATION1_API int test1(int i1)
{
///This function only increments.
++i1;
return i1;
}
extern "C"…
How to make RESTful WebBroker using C++Builder
February 21, 2017
Author: Andrea L59044
I used FireDAC because I wanted to make a DB connection to MySQL DB.
Resource and suffix can be obtained with Request->PathInfo.
So decomposePathInfointostd::vector<UnicodeString>and put it…
C++ Coding Bootcamp Training Course With Over 10 Hours Of FREE Training For Android And iOS
February 19, 2017
Author: Kevin M65995
The C++ Boot Camp series is a free Coding Bootcamp training course with over 10 hours of C++ training, question & answer sessions, and much more! C++ can be used to build cross-platform applications for Android, iOS, macOS, and Windows. The Android support uses the Android NDK. This coding boot camp course will bring you up to speed on building mobile and desktop apps…
Use the Excel.Application in C++Builder(bcc64)[JAPAN]
January 3, 2017
Author: Pixelot12345
How to use the Excel.Application in C++Builder. Target device is Win64.
Use the ComObj, call in CreateOleObject (“Excel.Application”).
Including ComObj is required.
In C++Builder it is below.
////
#include "System.Win.ComObj.hpp"
Import…
Custom buttons and the integrated Style Designer
December 22, 2016
Author: Jorge Batista
With the integrated Style Designer in RAD Studio Berlin, you can quickly create custom image buttons. For creating entire multi-device styles from scratch, we recommend you use the Bitmap Style Designer, available via the Tools menu.
Create a new…
Get Started Fast With RAD Studio For Cross Platform Development On Android, iOS, macOS, And Windows
December 14, 2016
Author: Daniele Fare
If you are new to RAD Studio and Delphi or you are a long time user these videos will help you setup and configure each of the platforms supported by RAD Studio and Delphi. The platforms supported by VCL apps are Win32 and Win64. The platforms supported by cross platform FMX apps are Android, iOS 32, iOS 64, iOS Simulator, macOS, Win32, and Win64. You can quickly build and…