Delphi 2010 introduced two new panels at the bottom of the Object Inspector in the Delphi IDE, the Quick Action panel and the Description panel. I didn't really notice them until I read this question on StackOverflow. It caught my attention because the screenshot showed mostly captions of the menu items added by GExperts to … Continue reading Hiding the Quick Action and Description panel in Delphi with GExperts
Category: Delphi
Filter for GExperts Class Browser
I have finished the filter functionality for the GExperts Class Browser expert. There are now filter fields for the class name as well as for the members. As of now (2017-01-07), there is no release of GExperts with this feature. But you can always get the sources and compile your own.
Drawing a Bitmap on a Paintbox in Delphi
Yes, I know, this is far from news, but since I just spent several hours trying to find out why my code didn't work, I'll document it here so I can look it up later. There are various ways to draw a bitmap on a paintbox in Delphi. I'll focus on the Windows API function … Continue reading Drawing a Bitmap on a Paintbox in Delphi
Writing large INI files
INI files, once the most used way for storing program configurations, are still popular due to their simplicity. Delphi offers two ways for accessing them: TIniFile - which uses the Windows API functions WritePrivateProfileString / GetPrivateProfileString TMemIniFile - which is implemented in Delphi and optimized for speed. If you only want to read or write … Continue reading Writing large INI files
New GExperts IDE form enhancement for the Goto dialog
GExperts has got several options to enhance various IDE forms. They can be enabled and disabled on the configuration dialog's IDE tab. There is now a new one: Enhance Goto dialog. It's the dialog you get when selecting Search -> Go to Line Number which looks like this in it's original full glory: It hasn't … Continue reading New GExperts IDE form enhancement for the Goto dialog
Delphi Live Templates: raise exception.CreateFmt
Delphi (XE2) comes with various predefined so called live templates which you can display with View->Templates. One of them is called "raise" and expands to [delphi] raise exception.Create('Error Message'); [/delphi] I don't know about you but I use Exception.CreateFmt much more often than simply Exception.Create, so it annoys the hell out of me when every … Continue reading Delphi Live Templates: raise exception.CreateFmt
GExperts 1.38 experimental twm 2016-10-03 released
I must admit I'm getting tired of waiting for Erik to make a new official GExperts release. So, here is another experimental one. The motive for making this release is twofold: The Delphi 10.1 Berlin update 1 for which I released a hotfix A bug I discovered and fixed yesterday that caused GExperts to crash … Continue reading GExperts 1.38 experimental twm 2016-10-03 released
dzMdbViewer 1.0.2 released
dzMdbViewer is a small tool I wrote, when I was stuck without a MS Access installation but needed to have a look into a .MDB file (and later .ACCDB file, if the Access Database Engine 2012 is installed). It can open these files and display a list of queries and tables stored in them as … Continue reading dzMdbViewer 1.0.2 released
First steps with REST and JSON
I must admit that I haven't done much programming regarding the web. There was an attempt to write an RSS reader some time back and there is my virtual radio alarm clock (with which I'm currently listening to SWR3). But this is my first try to do something with REST and JSON. The server side … Continue reading First steps with REST and JSON
Hotfix for GExperts crashing with Delphi 10.1 update 1
GExperts 1.38 experimental twm 2016-09-18 has a few issues with Delphi / Rad Studio 10.1 Berlin Update 1. Simply recompiling the DLL made them go away for me, so I provide the recompiled DLL as a hotfix for this release. Go the release page to get it.