Somebody just asked me whether there is a simple way to migrate GExperts settings from Delphi XE7 to a new version. The short answer is: No, but some experts (or rather: some functionality, because not everything is wrapped into an expert) have an ex- and import function. I also started to write a general ex- … Continue reading Migrating GExperts settings
Category: Delphi
Black Friday discount on GExperts
Joining in on the black Friday craze I am hereby offering a 90% discount on GExperts. Valid indefinitely. You only need to compile it yourself. (Sorry, could not resist. 😉 )
PortableAppsToStartMenu 1.0.0
Tired of all those programs which install lots of additional stuff I have been using more and more so called "Portable Apps". "Portable" in this context means: You can put them anywhere, even on a portable storage device and start them from there. These Programs are still Windows only. And of course nobody prevents you … Continue reading PortableAppsToStartMenu 1.0.0
GExperts 1.3.17 experimental twm 2020-10-23 released
Guess what? The new GExperts release is here. There are lots of bug fixes and a few new features in the new version. The major new feature is the Filter Exceptions expert. Please be warned that there was a bug when developing for non-Windows targets. It might have been fixed, but I can't test it … Continue reading GExperts 1.3.17 experimental twm 2020-10-23 released
Bug and possible fix for GExperts Filter Exceptions expert – testers needed
Mahdi Safsafi has proposed a fix for the bug in the GExperts Filter Exceptions expert, which occurs when developing for non Windows targets (first reported on Embarcadero's quality portal ). I have implemented this fix and it doesn't have any adverse effects on for Windows targets. But neither he nor I can test it for … Continue reading Bug and possible fix for GExperts Filter Exceptions expert – testers needed
Source code for Andreas Hausladen’s DfmCheck available
Andreas Hausladen - most probably know him because he wrote the very popular Delphi IDE Fixpack - has just announced (in German) that he published the source code of one of his other useful tools: DFMCheck. It's in his GitHub repository. Now I have just to figure out how to actually use it. 😉
GExperts for Delphi 10.4.1
I have received a few reports about bugs in GExperts in Delphi 10.4.1 that do not occur in Delphi 10.4. Here is a GExperts DLL that was compiled with Delphi 10.4.1. Maybe it will solve some of theses problems. Simply extract the DLL and put it into the GExperts installation directory, replacing the original one. … Continue reading GExperts for Delphi 10.4.1
Delphi’s TZipFile working on a stream
Recent versions of Delphi (for a suitable definition of "recent") come with a TZipFile class implemented in the unit System.Zip. This class has the really neat feature that it can not only read the contents of a ZIP file directly from a stream but also extract a file from that stream to a TBytes array, … Continue reading Delphi’s TZipFile working on a stream
Filtering and sorting for the GExperts PE Information Exports list
The GExperts PE Information tool just got a small improvement: The Exports list can now be sorted by clicking on the column header and filtered on the export name by simply typing text. The Escape key resets the filter. If you want to discuss this article, you can do so in the corresponding post in … Continue reading Filtering and sorting for the GExperts PE Information Exports list
External Exception $406D1388 in Delphi
Reminder to self: Exception $406D1388 is the exception used to set a name for a thread, like in: [delphi] procedure SetThreadName(const _Name: AnsiString); var ThreadNameInfo: TThreadNameInfo; begin ThreadNameInfo.FType := $1000; ThreadNameInfo.FName := PAnsiChar(_Name); ThreadNameInfo.FThreadID := $FFFFFFFF; ThreadNameInfo.FFlags := 0; try RaiseException($406D1388, 0, SizeOf(ThreadNameInfo) div SizeOf(LongWord), Pointer(@ThreadNameInfo)); except // ignore end; end; [/delphi] If you encounter … Continue reading External Exception $406D1388 in Delphi