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 =…
Manual uninstall of RAD Studio/Delphi/C++Builder 10.2
March 24, 2017
Author: Christopher M424
Launch the License Manager from the bin folder (by default “C:\Program Files (x86)\Embarcadero\Studio\19.0\bin\LicenseManager.exe”) and delete any trial or beta (Test Field) license that you can find. Check it under “License…
O RAD Studio 10.2 Tokyo está pronto!
March 22, 2017
Author: Alan J52653
Hoje a Embarcadero anunciou o lançamento do Delphi, C ++ Builder e RAD Studio 10.2 Tokyo. A nova versão do produto inclui o nosso novo compilador Delphi de 64 bits para Linux!
Iniciamos 2017 falando sobre o novo compilador Linux no Delphi Academy…
Delphi for Linux is Coming
March 17, 2017
Author: cupboy
Does Linux Matter?
I’m personally going to switch my current server from Windows to Linux, and save quite some money in the process, but this is what other developers told us: https://community.embarcadero.com/blogs/entry/why-is-delphi-for-linux-important
Getting Ready
In case you want to get back to Linux and get ready, here are a few resources:
Free O’Reilly Linux…
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…
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…
Delphi for Linux RTL units
March 2, 2017
Author: Didier Cabalé
I want to follow up my blog post covering the Delphi Linux compiler with a second one focused on the RTL units that are going to be available in Delphi for the Linux platform.
The System Name Space
These are the units part of the System name space that are available for the Linux platform (in alphabetic order):
SysInit.pas
System.Bindings.Consts.pas: this and following…
Why is Delphi for Linux Important?
February 28, 2017
Author: Todor Geshev
I recently asked some of our MVPs why Delphi for Linux was important to them. This is what they had to say . . .
“Delphi on Linux expands the Delphi World to large web servers, important for web services, and to small micro servers that can be used…
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…