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.