The Hospitality Survey EMS projectis part of theHospitality Survey App template for Delphi 10.2 Tokyo that Embarcadero has released through their GetIt platform. The Hospitality Survey App consists of four different projects. In this blog post I am going to cover theHospitality Survey EMS project. Itis the backend RAD Server module for the Hospitality Survey Client and the…
Expert Delphi Webinars with Paweł Glowacki
September 10, 2017
Paweł Glowacki’s book Expert Delphi and he is hosting a couple webinars where he will share some of the best parts.
Expert Delphi – Part 1
Tue, September 12, 2017 at8 AM, 1 PM, 8 PM CDT
Join Paweł for the tour through the first part of his recently…
Embarcadero has four mobile arcade game projects for Delphi in Object Pascal available for free over on GitHub. All of the projects run on Android, IOS, OSX, and Windows. One of the projects is called Space Rocks and I modified this project to allow the player to customize…
Build Dynamic Forms At Runtime With Hospitality Survey Editor For Delphi 10.2 Tokyo
September 8, 2017
Embarcadero has released a Hospitality Survey App templatefor Delphi 10.2 Tokyo through their GetIt platform. The Hospitality Survey App consists of four different projects. A client app built with FireMonkey for Android, IOS, OSX, and Windows where users can fill out survey information. A web app built with AngularJS for viewing survey stats. A REST server built with RAD Server for Windows…
UniGUI Web Application Development with Delphi + Sencha ExtJS
September 8, 2017
There was an updated version of our UniGUI webinar withFarshad Mohajeri of FMSoft. UniGUI is aframework that makes it easy to build robust websites with Delphi that leverage the Sencha Ext JS framework.
You can also catch the replay of the…
How to control "the system audio volume" of iOS
September 5, 2017
Author: h.mohri
Use C++Builder 10.2 to control audio volume of iOS.
I used the MPVolumeView class of iOS.
The MPVolumeView class is declared in “iOSapi.MediaPlayer.hpp”.
Include two files.
#include <iOSapi.MediaPlayer.hpp>
#include…
REST with Datasnap Details in Practical Application Part 2
September 3, 2017
Author: Landerson Gomes
When exposing the project I decided to make use of REST DataSnap on the server side, and on the client side of the REST Client Library, and Firemonkey to create our solution.
For serialize and deserialize of JSON types, we use the new features of the JSON Frameworks (inserted from the Seattle version): System.JSON.Readers and…
RAD Server Solution Series: [Hospitality] Restaurant Survey Application
September 1, 2017
RAD Server is a turn-key application foundation for rapidly building and deploying services based applications. RAD Server enables developers to quickly build new application back-ends or migrate existing Delphi or C++ client/server business logic to a modern services based…
Simulating Transparent Dialog on FireMonkey Mobile
September 1, 2017
Author: Pawe Gowacki
Delivering great user experience is probably one most important thing in app design. Certain ideas that seem to be easy to achieve in the conceptual phase of development, when an app is still a bunch of wireframes and sketches, could be more difficult to…
Convert CSV file to TFDMemTable format JSON file.
September 1, 2017
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…