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" CONSOLEAPPLICATION1_API void test2(int i1, wchar_t* a)
{
///Convert from int to wstring.
std::wstring s{};
s =…
New FireMonkey styles for macOS and Android Wear in 10.2
March 30, 2017
In Delphi, C++Builder and RAD Studio 10.2 we are providing two new FireMonkey styles: a dark blue style for Android Wear devices and a dark graphite style for macOS.
You can access the FireMonkey styles at…
RAD Server EMS Package to get data from a remote database through a REST API call and display the data on an EMS Client application.
March 17, 2017
Author: rkondner
Embarcadero’s Enterprise Mobility Services (EMS)is a turnkey middleware solution, part of RAD Server that supports secure, encrypted communication using an industry-standard REST interface. With built-in support for users and groups, EMS is a…
What's New in C++Builder 10.2: Part 1 - The Linker
March 17, 2017
RAD Studio 10.2 Tokyo will be out very soon, and I’d like to let you know some of what you can expect to see new on the C++Builder side. While the majority of work is for Linux, which will be available for C++ in 10.2.1, we’ve worked on three key areas:
Improved linking
Improved code generation
Improved debugging
Today I want to discuss what’s new in the linker.
The Win32…
Author: Dean C7173
Last week, in the Part 1 of this blog post we have installed Ubuntu 16.04 LTS Server-edition into a VMWare Fusion virtual machine running on Mac. Now we are going to complete the configuration of the Ubuntu server, install all the prerequisites for…
Installing Ubuntu 16.04 LTS on VMWare Fusion for Linux Development with Upcoming Delphi 10.2 - Part 1
February 27, 2017
Author: AD66361
This week I’m going to do the first live preview of the upcoming version of RAD Studio 10.2 Tokyo in Prague. One of the most anticipated new features is support for Linux server-side development in Delphi.
In this blog post, I’m going to document…
Author: Alan J64141
With RAD Studio, you can build multi-device applications from a single codebase. If you’re just starting with mobile application development using the FireMonkey framework, we have great code snippets to help you get started.
Location Sensor
This code snippet shows you how to use the TLocationSensor component in order to read the GPS location of the device and display…
Using Delphi to get OS version, device name, language on iOS/Android
February 22, 2017
Author: Nikolas M41894
unit uOSVersionAndLocale;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Controls.Presentation…
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…
Eight 3D Demos Featuring Volume Rendering, Textures, Shaders, Materials, Polygons, And Models In Delphi FireMonkey
February 19, 2017
Author: Yogi Yang 007
Developer luxidea over on the LUXOPHIA GitHub account has quite a few 3D demos for Delphi FireMonkey featuring various techniques includingVolume Rendering, Textures, Shaders, Materials, Polygons, Models, and more. If you are looking to work with 3D and FireMonkey this probably a pretty good place to start. The demos appear to be mainly targeted at Windows as some of…