Developers often get requests to create forms where it is crucial to pay attention to the position of a cursor after the Tab key is pressed at every point of the program execution. This can be particularly important when developing cross platform apps where following user’s expectations of how user interfaces should behave can help make your app seem professional. It can be important from…
Inevitably, during any the lifecycle of any app development there can be a lot of projects that were written or maintained during the period of the Delphi 5/6/7 popularity or even earlier. Many of them have been already migrated to newer versions of the programming language.
How To Use The DeepAI Service In Your Cross Platform Apps
March 23, 2022
Today AI technologies boast high popularity and demand in many spheres of our life. For example, AI is used for face identification on smartphones. On social networks, we have the possibility to add different effects on photos (AR, collages, etc.). AI tools allow users to…
What Are The Mistakes We Made In Creating Delphi Objects?
November 16, 2021
Practically every developer, even a newcomer in programming, can create and destroy objects correctly. A classic construction that is used in the majority of programs looks the following way:
MyObject:= TMyClass.Create();
try
{some code…}
finally
MyObject.Free;
end;
Yet, some time ago, there were a lot of discussions where to place object creation: before an exception handler or within…
What Is It Like To Be A Developer Serge Pilko?
October 27, 2021
Hello. This article is part of a series where we speak with professional software developers who use Windows App Development Tools, ask them what it’s like to write code for a living, and perhaps gain a few insights into the software development industry along the…
Powerful Enterprise-Grade Real-Time Streaming For IoT
June 23, 2021
Did you know how easy it is with Windows App Development Tools like RAD Studio Delphi to add robust, enterprise-grade real-time streaming to and from IoT devices? We’re going to show you how to get your apps to talk to IoT devices securely and in a robust fashion in…
Discover The Powerful Custom ModernListView Library For Cross-Platform Development in Delphi FireMonkey
April 2, 2021
The website www.fmxexpress.com has an article with some really detailed information about the ModernListView Library. Lets check what they are saying.
“Developer rzaripov1990 has a custom ListView component over on Github for Firemonkey in Delphi 10 Berlin. The ListView is the central component for every mobile application, and as a developer you should always choose the one that can be…
Work Efficiently With Git Repositories Using GitForDelphi
March 30, 2021
GitForDelphi allows you to work with git repositories from within your Delphi code, with the only dependencies being the uGitForDelphi.pas source file and the libgit2 DLL.
It’s extremely easy to use GitForDelphi !
To set it up, just add uGitForDelphi to…
Easily Improve Your Productivity With The Delphi Dev Shell Tools Windows Shell Extension
January 4, 2021
This Windows Shell Extension contains really useful tasks for Object Pascal developers. It creates right click options in Windows Explorer that really help you work with your Delphi projects to their fullest and save massive amounts of time. Go through the features and…
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 project:
“There are some (good) profilers available, but these are:
Too expensive, and I want that every programmer can use a…