News

True Type Font Iconography for Android and iOS Apps

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 archive, extract fontawesome-webfont.ttf from the font-awesome-4.3.0fonts folder to the root of your project folder. Rename…
Read more
News

OpenSSL and HTTPS Support for iOS Devices

Author: Brian Alexakis For the iOS Device target platform, which does not support dynamic libraries, you need a static version of these library files (libcrypto.a and libssl.a). To obtain these library files, do either of the following: Download the pre-compiled libraries…
C++

Solution for the EditorLineends.ttr issue

Author: Embarcadero USA During the month of August 2014, Microsoft issued a security patch for Windows (http://support.microsoft.com/kb/2993651). This update had an impact on past versions of our development tools, including RAD Studio, Delphi, and C++Builder from version…
C++

Designing App Navigation with TMultiView

In RAD Studio XE7, we introduced a new smart menu component called TMultiView. With TMultiView, it is really easy to create app navigation that automatically adjusts itself depending on form factor, orientation and target platform using our new behavior services. TMultiView is a container component which means that you can parent many different components to it, such as a top aligned TToolbar or a…
Read more
C++

FireUI Multi-Device Designer and working with Views

In RAD Studio XE7, we introduced the FireUI Multi-Device Designer. FireUI makes it easy to create user interfaces across multiple devices using a master form to share all user interface code, and then optimize inherited views for each target platform and…
Delphi

Uploading images to the cloud with BaaS in RAD Studio XE6

In Delphi, C++Builder and RAD Studio XE6, we integrate with leading Backend as a Service (BaaS) providers to add functionality and platform services to your applications. With BaaS, you get easy access to common services in the cloud without having to build or maintain the backend services yourself. This includes support for being able to upload images to your BaaS account using RAD Studio…
Read more
C++

Adding user account creation to your BaaS enabled apps

In RAD Studio XE6, we introduced our BaaS (Backend as a Service) support. This includes components for both Kinvey and Parse. Part of our component pack is the TBackendUsers component which is designed to be hooked into either the ParseProvider or KinveyProvider component. My sample application that I am building as part of this tutorial will allow me to create a user account on either Kinvey.com…
Read more