Jeroen has submitted two enhancements to GExperts: Grep search makes IDE unresponsive when searching massive amounts of directories with non-matching files Allow delete key in grep search `Results` pane to delete an entry Thanks! I am still working on the refactoring for the IDE form enhancements, but progress is slow, so the next release will … Continue reading Enhancements to GExperts Grep
Category: GExperts
Some documentation on the internals of GExperts
I have started to write some documentation on the internal workings of GExperts. For now, it covers only a very small part of the IDE form enhancements that GExperts provides. It is meant mostly for myself to get an overview of that part of the tool which has grown too large to understand at a … Continue reading Some documentation on the internals of GExperts
How I used some more of the money donated to GExperts
Donations for GExperts keep coming in. It's more a trickle than a flood but hey, I'm not in it for the money. And please remember that I prefer other kinds of contributions over money. I have used that money in turn for donations to Pi-hole®: A black hole for Internet advertisements Rapid Environment Editor PDF … Continue reading How I used some more of the money donated to GExperts
Changing the order of TabSheets in a PageControl in Delphi
The method of changing the order of the TabSheets in a PageControl in Delphi is not obvious. Apparently there is no drag and drop support (at least not in Delphi 2007). You have to change the PageIndex property. So, if you want to insert a new page, add it and then change its PageIndex to … Continue reading Changing the order of TabSheets in a PageControl in Delphi
Bug in Macro Template expert fixed, yet another Unicode issue in GExperts
As I stated before I prefer good bug reports on GExperts over money any time. Philip von Melle kept testing and providing feedback even after I thought the issue was already solved. The issue was that a Macro Template (%SELECTION) used on this code [delphi] // öäüß procedure TForm1.FormCreate(Sender: TObject); begin ShowMessage('TEST'); end; [/delphi] while … Continue reading Bug in Macro Template expert fixed, yet another Unicode issue in GExperts
Consider side effects if you use debugger watches
Note to self: Do not use a watch entry like this while debugging GExperts: GxOtaReadEditorTextToString(GxOtaGetEditReaderForSourceEditor(nil)) While this might seem very convenient it will sooner or later corrupt the current edit buffer or do something even worse, because, as a comment in ToolsApi states: WARNING!!! A IOTAEditReader should never be active at the same time as … Continue reading Consider side effects if you use debugger watches
Calling GExperts Grep (or an entry point in any Delphi dll) via rundll32.exe
GExperts so far comes with a special stand alone executable GExpertsGrep that does nothing else but load the GExperts dll and call the entry point ShowGrep. Having this additional executable isn't really necessary because Windows already comes with a tool that does exactly that: Load a DLL and call an entry point: rundll32.exe rundll32 path\to\your.dll,EntryPoint … Continue reading Calling GExperts Grep (or an entry point in any Delphi dll) via rundll32.exe
Error regarding rtl240.bpl not found in stand alone version of GExperts Grep
Various people have reported an error message regarding rtl240.bpl not being found when calling the stand alone version of GExperts Grep. I could never reproduce it but my recent insight on SaveLoadLibrary now also solved that one: The stand alone version of GExperts Grep tries to load any GExperts dll, regardless which version. The idea … Continue reading Error regarding rtl240.bpl not found in stand alone version of GExperts Grep
GExperts RSS feed link now works
Jeroen Wiert Pluimers has notified me in his comment on Google+ that the RSS feed for GExperts related posts doesn't work. I apparently forgot a forward slash in the url: correct: http://blog.dummzeuch.de/category/gexperts/feed/ wrong: http://blog.dummzeuch.de/category/gexpertsfeed/ It's fixed now, sorry about that.
GExperts for Delphi 10.2 Tokyo
I have been asked to provide GExperts for Delphi 10.2 Tokyo, multiple times, via various channels. Apparently not everybody subscribed to the GExperts Community on Google+, where I posted this on 2017-04-01: No April fools' joke: GExperts 1.38 experimental 2017-04-01 for Delphi 10.2. This version should solve several bugs that resulted in Access Violations in … Continue reading GExperts for Delphi 10.2 Tokyo