Enhanced Goto dialog enhancement

The Goto dialog IDE enhancement of GExperts got itself an enhancement: It now also displays "Package", "Requires" and "Contains" in the list. Also, all IDE dialog enhancement classes now derive from a new TIdeDialogEnhancer class which provides some basic functionality that previously was duplicated.

GExperts Sort Selected Lines Expert now uses “natural” sort order

Achim Kalwa, who has been steadily contributing to GExperts, submitted a patch that changes the sort order used by the "Sort Selected Lines" Expert in GExperts to use the natural sort order, similar to the way Windows Explorer sorts files. E.g. Assume you want to sort the following: Label20 Label1 Label10 Label2 Label100 Label3 Label11 … Continue reading GExperts Sort Selected Lines Expert now uses “natural” sort order

Using the adler32 checksum in Delphi 2007

Delphi 2007 comes with the RTL unit zlib.pas which links to adler32.obj. adler32.obj is a precompiled object file implementing the Adler-32 checksum (most likely implemented in c). Delphi apparently doesn't actually use that function since it is simply declared as ... [delphi] procedure adler32; external; [/delphi] ... which is plain wrong but gets the job … Continue reading Using the adler32 checksum in Delphi 2007