Today I noticed a few blog posts that I thought odd, because they were referring to some Delphi IDE tools I had released. So I thought somebody might be using them to promote his own blog. It turned out quite differently: David Hoyle, who is the original author of the AutoSave Wizard and the Delphi … Continue reading David Hoyle has a new blog
Author: dummzeuch
Paging Peter Laman
Does anybody know how to contact Peter Laman, who wrote the AutoTodoInserter wizard? I have added this functionality to GExperts based on his code. I had to make quite a few changes to make it work with Unicode but the basic structure is still the same. The license terms state "Commercial use requires permission". Even … Continue reading Paging Peter Laman
Experimental GExperts Version 1.38 2016-02-15 released
I bloged a lot about GExperts recently: A new way to call the experts in GExperts Compiling GExperts while the DLL is loaded in the IDE Backwards compatibility of uses lists Automatically scroll a memo line by line in Delphi And you have probably wondered when I will make a new GExperts release. OK, no … Continue reading Experimental GExperts Version 1.38 2016-02-15 released
A new way to call the experts in GExperts
The Delphi IDE comes preconfigured with quite a lot of keyboard shortcuts and the remaining keyboard combinations are getting less and less with every plugin that needs some more. Even worse, some functions have multiple shortcuts, e.g. the replace dialog can be called using each of Ctrl+Q H or Ctrl+R or Ctrl+H (what a waste!). … Continue reading A new way to call the experts in GExperts
Compiling GExperts while the DLL is loaded in the IDE
If you have tried to work on GExperts (or any other DLL-based Delphi IDE expert) you have probably encountered this annoyance: Of course you want GExperts to be active in your IDE so you can use its features. But if you then compile it, the output file already exists and is locked because it is … Continue reading Compiling GExperts while the DLL is loaded in the IDE
Backwards compatibility of uses lists
Sometimes the uses lists become an issue, when you want to keep your source code backwards compatible to older Delphi versions. This usually happens when some declaration was moved from one RTL/VCL unit to a different one. One example is TAction which has moved from the unit ActnList to the new unit Actions which was … Continue reading Backwards compatibility of uses lists
dzDeleteProp 1.0.0 released
dzDeleteProp is a small tool I just wrote, that deletes configurable properties from all Delphi .dfm files in a given directory and optionally its subdirectories. The reason for such a tool is backwards compatibility to older Delphi versions, e.g. Delphi 6 does not know about ExplicitWidth and ExplicitHeight, which Delphi 2007 and above insist on … Continue reading dzDeleteProp 1.0.0 released
Automatically scroll a memo line by line in Delphi
Today vanity caught up with me and I decided to add myself to the list of "major contributors" shown on the GExperts About dialog. But this list has become rather long over the years (actually it is surprisingly short given the time GExperts has been in existence), so only the top few names are visible. … Continue reading Automatically scroll a memo line by line in Delphi
Bugfix release experimental GExperts 1.38 2016-01-10
There was a major bug in yesterday's experimental GExperts release 1.38 2016-01-09. As discovered and reported by +Karheinz Jansen the Delphi IDE could crash when closing and show cascaded access violations. This was caused by a bug in the handling of dockable forms, which has now been fixed. And since I was at it, I … Continue reading Bugfix release experimental GExperts 1.38 2016-01-10
Dockable form handling within GExperts
Because I messed up the dockable form handling for the new Bookmarks expert which resulted in spurious cascading access violations when closing the Delphi IDE, I had to revisit that code. And so I can look up the information I gathered fixing that problem, I'm putting it here for later reference. Basically, you create a … Continue reading Dockable form handling within GExperts