Archive
Tuesday, 3. July 2018
0
votes

Delphi – ModelMaker Code Explorer history lists in the registry
The Wiert Corner
– ModelMaker Code Explorer does not allow you to edit the “most recently used” items in that you can use in various places, but luckily these history lists are all in the registry as keys under this base key: HKEY_CURRENT_USER\Software\ModelMaker\MideX\#.0\Histories There # is the major ...
0
votes

Delphi – directives are not conditionals
The Wiert Corner
– Directives are commands to the compiler such as {$D+} or {$WARN xxxx OFF}. Compiler defined conditionals are not “directives”, rather they’re used for conditional directives {$IF Defined(xxxx)} or {$IFDEF xxxx}, where xxxx can be NEXTGEN – Allen Bauer It’s important to ...