Developer Ivan Polyacov from Apus Software created Astral Heroes in Delphi. According to the site it is a collectible card game that’s simple to learn, exciting to play, and deep enough to challenge even the greatest strategists. It uses a truly fair Free-to-Play model that never hides the best content behind “pay walls” according to the developer. Some of the features of this…
Quickly Learn To Use Delphi Classes To Create A New Python Type With Python4Delphi Sample App
November 11, 2020
Earlier we learned how to create a new Python Type for a Delphi Record using the TPythonType component’s property TheType. It’s also necessary to learn how to use Delphi classes for creating a new Python Type using Python4Delphi component’s property…
Leveraging High DPI with Ray Konopka - DelphiCon 2020
November 11, 2020
Have you ever accessed a website on your mobile device and found that it was formatted for desktop and nearly unreadable on a 5″ screen? Similar problems occur for users running high-DPI screens. As 4K screens proliferate and the consumer pressure for 8K grows…
TheBottom Navigation templateis designed to embrace the Material Design user interface and user experience philosophy. It looks great on both iOS and Android and works on Windows for testing.
The template has eight different varieties within the application as different forms.
Basic – ufrmBasicShifting – ufrmShiftingLight – ufrmLightDark – ufrmDarIcon…
Learn How To Use C++ Lambda Expressions In C++17 With C++Builder
November 10, 2020
C++ got lots of additions throughout C++11, C++14 and C++17. Currently, C++ is a completely different language than it use to be. This Modern C++ post explains how to use the Standard Template Library and the most important features of the C++17 that will greatly help you…
Ultimate Enhanced Native Windows Task Manager Built In Delphi
November 10, 2020
Developer Michal Mutl with MiTeC has a powerful enhanced task manager utility available which is built in Delphi. The features in this enhanced task manager make it one of the most advanced task managers for Windows that I have seen. There are so many features here…
Learn How Easy It Is To Create A Python Type In A Delphi Application With Python4Delphi Sample App
November 10, 2020
We have learned how to create a Python Module in Delphi and added some methods to it. It’s time to learn how to create a Python Type(Class) in Delphi. Creating a new class creates a new type of object, allowing new instances of that type to be made. Each class instance can have attributes attached to it for maintaining its state. Class instances can also have methods (defined by its…
[InfoGraphic] DevOps, Development and RAD Studio
November 9, 2020
DevOps and RAD Studio
DevOps is a term I’m hearing more and more during customer conversation, and I am often sharing the different ways that Delphi, C++Builder and RAD Studio programming supports DevOps. (Keep reading – free infographic below)
The term DevOps…
Delphi Compiler And LSP Patch for RAD Studio 10.4.1
November 9, 2020
Embarcadero has just released a new patch for RAD Studio 10.4.1. This includes Delphi compiler improvements and Delphi LSP improvements. The patch is available in GetIt, and the RAD Studio IDE Welcome page should indicate its availability. The patch is also going to be…
Earlier we have seen how to add methods in Python Module using Python4Delphi TPythonModule component’s Add Method. However, the Add Method parameter uses a PyCFunction type parameter. In many cases, we may need to define the method which should return Delphi Type. How to do that? This post will provide a way to do that using the TPythonModule component itself. You can also use Python4Delphi…