Subject Re: [IBO] Can I use Fastreport v2.3 and Tib_query components?
Author Dmitry Beloshistov
Hello, petesouthwest!
You wrote to <IBObjects@yahoogroups.com> on Sat, 10 Sep 2005 21:38:56 -0000:

p> I am trying to use the TIB_query rather than the tibo_query query
p> components and fastreport v2.3

p> On searching the fastreports forum I have seen threads suggesting
p> that I remove the '//' from the {$DEFINE IBO} line the in the fr.inc
file
p> and then re-compile. When I try this I get the error required package
p> IBO_D6 not found.

p> I know this is more of a Fastreport issue, but I wondered if anyone
p> else on here has already sussed this problem?

p> Can anyone help?

Check FR6.DPK "requires" section. It must be:

requires
VCL,
VCLSMP,
DESIGNIDE
{$IFDEF IBO}
{$IFDEF IBO4}
, IBO40CRT_D6,
IBO40FRT_D6,
IBO40TRT_D6,
IBO40VRT_D6,
IBO40XRT_D6
{$ELSE}
, IBO_D6
{$ENDIF}
{$ELSE}
, VCLDB
{$ENDIF}
{$IFDEF BDE}, BDERTL {$ENDIF}
{$IFDEF IBX}, IBXPRESS {$ENDIF}
{$IFDEF ADO}, ADORTL {$ENDIF}
{$IFDEF JPEG}, VCLJPG {$ENDIF}
{$IFDEF TeeChartStd},TEE {$ENDIF}
{$IFDEF TeeChart45}, TEE45 {$ENDIF}
{$IFDEF RX}, RXCTL6 {$ENDIF}
{$IFDEF MWEDIT}, mwEdit_D6 {$ENDIF}
{$IFDEF QBUILDER}, OQB60 {$ENDIF};

Hint: don`t save F6.DPK from Delphi IDE - IDE replace requires section via
removing all {$IFDEF} ..{$ELSE} statement.


WBR,Dmitry Beloshistov AKA [-=BDS=-]