Author: Luis Navarro
In one of the latest surveys among RAD Studio developers, we realized that there is still a significant part of the community that doesn’t use any version control system, a surprising 32%.
There are many reasons to use a version control system, no matter if you’re a single developer working in a small project or if you’re a large team working in a big one. So, if…
Creating Custom Multi-Device Preview Devices
May 14, 2015
In RAD Studio XE8, we introduced the Multi-Device Preview. TheMulti-Device Previewprovides adesign time viewof what your application is going to look like on a wide range of devices.
In RAD Studio XE8, you can easily add your own device to the…
CORS on DataSnap REST Server
May 7, 2015
Cross-origin resource sharing (CORS) is a mechanism that enables resources to be shared across domains. Typically this isn’t allowed to prevent security issues. To enable on your DataSnap REST server you can use the following code per MVPNirav Kakufrom…
Working with TMapView on iOS and Android with RAD Studio XE8
April 16, 2015
The new maps component in RAD Studio XE8 simplifies the addition of mapping functionality to mobile applications. TMapView provides map API access for iOS and Android. It makes use of the Google Maps Android API on Android and the Map Kit Framework on iOS.
The key features of the TMapView component are:
Four Types of Maps: Normal, Satellite, Hybrid and Terrain (Android only)
Gesture Control…
Building Proximity Aware Application with RAD Studio XE8
April 8, 2015
RAD Studio XE8 provides you with the tools to rapidly design, build, and deploy connected apps that deliver innovative IoT solutions.
The new Beacon component makes it easy to add proximity awareness to your applications.
Two beacon formats are available: iBeacon and…
Cybelesoft - Thinfinity Virtual UI for Delphi
March 20, 2015
Embarcadero Technology Partner Spotlight
Cybelesoft – Thinfinity Virtual UI for Delphi Gustavo Ricardi – CYBELE SOFTWARE, INC. Friday, March 20, 2015 http://www.cybelesoft.com/
YouTube video – https://www.youtube.com/watch?v=OBbKKPy32S8
Thinfinity VirtualUI…
Working with StylesData in your FireUI applications
March 3, 2015
I have been getting some questions recently on how to identify and access style elements using StylesData. StylesData is defined by the style and different controls can have different elements.
To identify and access the style elements in code that you want to change programmatically, you first need to set the style properties for each item at design time. You can then view the structure for those…
Using existing ClientDataSet data in FDMemTable
February 14, 2015
Author: Davide Rubbiani
For today’s #DelphiWeek post, I thought I would highlight how you can use existing ClientDataSet (.cds) data in FDMemTable. With this approach, you can also save existing .cds data as JSON, for example. In this tutorial, I am going to create a…
True Type Font Iconography for Android and iOS Apps
January 26, 2015
Author: Brian Alexakis
Download Project Files
Download the project files.
How to Deploy a Custom True Type Font
First create a new Multi Device Application in either C++ or Object Pascal.
Save the project to a folder on your filesystem.
From the FontAwesome downloaded…
SQL Server Tip: Optimizer Using Index Scan and Not Seek!
January 23, 2015
Author: Timur T7253
Introduction
Other than coding, the next biggest task for developers is to troubleshoot problems in their environments. Developers in the SQL world mostly face problems around error messages, getting required output via T-SQL query, and unpredictable performance of queries.
The Problem
One fine day somewhere in the world one developer was troubleshooting a performance problem…