Embarcadero Offers
Category
I try not to make too many public comments about issues that frustrate me, especially when they pertain to a product I use and support. But Embarcadero has another "offer" to buy or upgrade Delphi (or RAD Studio) that just makes me angry all over again.
The User as Content
Category
Websites publish content for people to read, search, and sometimes experience through visual or audio means. Typically, the content is geared around a specified subject such as products sold by a store or discussions over a set of topics.
My Favorite New Delphi 10.3 Rio Features
Category
Delphi 10.3 Rio has been out for awhile now, in fact, I recently installed the second update, so this post is a little late to the party but I thought I shared my thoughts anyway.
Delphi Locked-up with Git
Category
I needed to reinstall Delphi 10.2 recently and when I did, I finally decided to check the box that asks if you want to hook up a source code repository. I've always managed source in repositories outside of the IDE, but decided to see if and how much productivity improvement could be had it was built in with the project manager. I use Git so selected the installed git-cmd.exe
file when prompted.
Multiple InterBase Instances
Category
Way back in 2000, InterBase 6.0 was made open source. Soon a fork was made in the code and Firebird SQL was born. I started using this new powerful database engine and as InterBase went back to being a closed-source product, stuck with the free version or used other database engines. Many tools and Delphi component sets still support both IB and FB as they are still quite similar.
Path Size with Multiple versions of Delphi
Category
I work on a variety of projects in several different versions of both Delphi and Visual Studio. A lot of these projects also include database access. To support all these different projects, a lot of different tools need to be installed and with each comes a set of paths that are setup for the applications to find libraries, support tools, and so forth. Since most software tools can also generate both 32-bit and 64-bit code these days, there are often two sets of paths for each type of compilation.
Blog Conversion
Category
Lots of changes to write about since the last blog entry over a year ago.
Programming Delphi for Various Platforms and Versions
Category
Delphi has come a long ways since it was first released in 1995. It now compiles 32-bit or 64-bit, still creates console or Windows applications but now also can create Android and iOS apps if you have the FireMonkey library and cross-platform tools, you can create Android and iOS apps.
Broadening My Skill Set
Category
As an independent software developer, I make my living writing scripts and applications for others. In order to maximize my opportunities, I need to be a master of many environments. Since much of my career has involved Windows applications, I am spending quite a bit of effort in other areas.
Preventing Multiple Application Instances in Delphi with TMutex
Category
Having worked in Delphi for many years, I've seen the development tool and it's RTL evolve significantly, yet remain resilient in backwards compatibility. Early on, to prevent your application from running multiple times, there were generally two different approaches:
- Search for the name of your app's main form by name, or
- Search for a "mutex" created by your app.