Monthly Archives: July 2011

Handling Folding and Unfolding code in the IDE

By | July 21, 2011

First of all I need to apologise for a mistake in the original article on setting up a expert/wizard where by a package based wizard would not load correctly in the IDE. What is missing from the code is the exporting of the Register procedure in the interface section of the wizard module as shown… Read More »

Conditional Compilation of Open Tools API experts

By | July 21, 2011

Ordinarily in conditional formatting you would write something like… Procedure MyProc; Begin DoSomething; {$IFDEF VER120} DonsomethingElse; {$ENDIF} DoSomethingAgain; End; However, if you want this piece of code to work with a particular version of Delphi and later version of Delphi then this will not work as these types of definitions are specific to a version… Read More »

Open Tools API Interface Version Guide for Backward Compatability

By | July 21, 2011

There are a number of reason why I write these blogs. The first is simply to write down what I’ve found out so that I can reference it later (years generally) but also to impart what I have found to the rest of the community as they have generally help me over the years to… Read More »