In this webinar, you can learn about mobile and database development with Delphi. This webinar can be a quick start for new learners.
Overview
Introduction to mobile platformsPrototyping mobile apps on WindowsUsing platform servicesConditional defines & the mobile compilersUnderstanding ARC memory managementDeployment managerIntroduction to FireDACUsing embedded databasesUsing REST…
Cross-Platform Chess Openings Wizard Used By 60,000 Chess Players And Built In Delphi
December 24, 2020
Chess Openings Wizard is a tool for macOS, Windows, iPad, and Android that drastically reduces the time it takes to design and memorize an opening and it is built in Delphi. The cross-platform versions utilize FireMonkey to save development time. Grandmasters and novices can…
Discover The Popular Alcinoe Library Of Visual And Non-Visual Components For Delphi
December 24, 2020
The article on Github is really detailed. So don’t waste time to check all of the Alcinoe features!
According to Github, the library provides:
Full opengl video player for FireMonkey;WebRTC Delphi wrapper;Firemonkey native iOS/Android TEdit and…
Rapid SEO Tool from Blumentals Solutions SIA is a search engine optimization and search engine position monitoring software for the desktop that is built in Delphi. According to their site “it designed to ease the task of improving web page position on search results. It will literally look at your web page code and suggest what can be improved to get better results.” The software…
All You Need To Know About The Open Source AsmProfiler 32-Bit Profiler Written In Delphi And Assembly
December 23, 2020
AsmProfiler is a full tracing 32bit profiler (instrumenting and sampling), written in Delphi and some assembly. AsmProfiler stands for “assembly profiler” because the heart of the profiler is written in assembly.
According to the author of the…
Create Robust Core Music Player Functionality For Windows In Delphi With FMX Sample
December 23, 2020
The MusicPlayer application uses controls such as TProgressBar, and TTrackBar, and platform-specific technologies such as MPMusicPlayerController for iOS, to show how to create a music player.
Your device needs to have at least one song so that you can see the application…
Easily Manage Database Event Notifications In Windows Delphi Apps
December 23, 2020
When it comes to database applications, you start processing lots of data and events. So, to handle these events properly we can use TFDEventAlerter class to handle thedatabase event notifications.
The general behavior of the events is DBMS-specific and TFDEventAlerter provides a unified way of handling them.
To learn how to utilize this class, we can explore theFireDAC…
Quick And Easy Way To Create And Manage PDF Documents Programmatically
December 22, 2020
ThePortable Document Format(commonly known as“PDF”) is afile formatdeveloped in the early 1990sas a way to share documents created by computers, including text formatting and inline images. PDF was designed to allow viewing…
The recently released AMD Ryzen 9 5950x offers 16 cores and 32 threads so let’s see what kind of performance we can get out of a parallel C++ compile with those 32 threads. At the time of this writing the AMD Ryzen 9 5950x has the highest single core CPU Benchmark…
Learn How The Delphi RTL Improves Efficiency With Fewer Lines of Code
December 22, 2020
Delphi RunTime Library gets enhanced with each new Delphi release, but often these improvements hide behind many flashier features. In this session, you can find out some of these fantastic RTL features.
For instance, you have this Delphi code:
if value = 0 then
Result := 'Zero'
else
Result := 'Non-Zero';
As you can see this is 4 lines of code. You might have seen that in…