DelphiTech Partner

Command-line Compilation Of Delphi Projects: Real-life Examples

Delphi app command-line compilation allows developers to compile a project in the background regime without the necessity to run IDE software. This approach is very useful for automating the compilation process, especially in those cases when you need to compile a lot of projects and/or libraries. Command-line compilation is conducted by means of the MSBuild command. The parameters of this command…
Read more
Delphi

25 FireMonkey Tips for Delphi's 25th Birthday

In today’s Delphi birthday post, I am including 25 FireMonkey tips for building multi-device applications. 1. Home screens are a popular design paradigm as they display the key app functionality on the first screen, making it easily accessible to the application user.
News

Creating Custom Styles with the Bitmap Style Designer - CodeRage Replay, Tips & Tricks and Sample Files

Style Creation Tips Start out with the 3x resolution graphic first, then scale down to 2x, 1.5x and 1x using your graphic design tool of choice (for example, Photoshop) Save each graphic as a png. Except for the 1x resolution, all style graphics need to include the resolution size as part of the file name, i.e.: 1x:     _name.png 1.5x:  _name15x.png 2x  :   _name20x.png 3x  :  …
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 from Github. Build these libraries from sources. Download the sources from Github and follow the steps described in Tutorial…
Read more