Additional
dbCAP
AnyDAC
ThinDAC
NCOCI8
Topic: Cannot install anydac with indy10
Cannot install anydac with indy10
Posted: 2005/06/15 09:20
 
Hello . I've the Indy10 in my d7 . I cannot install anydac because it requires indy70.bpl - in indy10 this library is not present . How to resolve this problem ?
RE: Cannot install anydac with indy10
Posted: 2005/06/15 14:03
 
Hello !

1) At installation skip Build Binaries step.

2) Goto $(ADHOME)SourcedaAD.inc, open it in editor. Find lines:
{.$undef AnyDAC_INDY8} // AnyDAC_INDY8 is defined by default for D6.
{.$undef AnyDAC_INDY9} // AnyDAC_INDY9 is defined by default for D7.
{.$undef AnyDAC_INDY10} // AnyDAC_INDY10 is defined by default for D5, D2005.
And replace them with:
{$undef AnyDAC_INDY8}
{$undef AnyDAC_INDY9}
{$define AnyDAC_INDY10}
Save file.

3) Open in Delphi IDE $(ADHOME)PackdaADD7.bpg and choose Compile All Projects. Then choose daADDclD7 in choose Install.

4) Open in Delphi IDE $(ADHOMEToolTools.bpg and choose Compile All Projects.

You are done !

Regards,
Dmitry
RE: Cannot install anydac with indy10
Posted: 2005/06/24 12:33
 
It works.

Thanks