How to install the zeos component on Delphi XE8?

  • Explain what exactly you see the problem, what approaches you use and what you want to see in the answer? - Kromster

1 answer 1

You open the file: \ ZEOSDBO-7.1.4-stable \ src \ Zeos.inc You find the code:

// Compilation directives for Delphi XE7 by miab3 {$IFDEF VER280} {$DEFINE VER200BELOW} // Used in code {$DEFINE DELPHI12_UP} // Used in code {$DEFINE DELPHI14_UP} // used in tests only {$DEFINE DELPHI15_UP} // Used in zeos.inc only {$DEFINE DELPHI16_UP} // Used in code {$DEFINE DELPHI17_UP} // Used in zeos.inc only {$DEFINE DELPHI18_UP} // Used in zeos.inc only {$DEFINE DELPHI19_UP} // Used in zeos.inc only {$DEFINE DELPHI20_UP} //By dieletro Used in zeos.inc only {$DEFINE DELPHI21_UP} //Used in zeos.inc only {$DEFINE BDS4_UP} // Used in code {$DEFINE BDS5_UP} // Used in code {$ENDIF} 

and after it you write:

 // Compilation directives for Delphi XE8 by rareMax {$IFDEF VER290} {$DEFINE VER200BELOW} // Used in code {$DEFINE DELPHI12_UP} // Used in code {$DEFINE DELPHI14_UP} // used in tests only {$DEFINE DELPHI15_UP} // Used in zeos.inc only {$DEFINE DELPHI16_UP} // Used in code {$DEFINE DELPHI17_UP} // Used in zeos.inc only {$DEFINE DELPHI18_UP} // Used in zeos.inc only {$DEFINE DELPHI19_UP} // Used in zeos.inc only {$DEFINE DELPHI20_UP} //By dieletro Used in zeos.inc only {$DEFINE DELPHI21_UP} //Used in zeos.inc only {$DEFINE BDS4_UP} // Used in code {$DEFINE BDS5_UP} // Used in code {$ENDIF} 

Save, install