Subject | Re: [IBO] D7 and FastReport2.53 vcl |
---|---|
Author | irogla |
Post date | 2007-12-16T22:04:06Z |
Ok, I put all components on a form and it worked as you said.
But, I have a lot of reports including ibx components, like
frIBXDatabase and frIBXQuery with sql code etc. The reports are
already designed with bands etc that point to those ibx components.
Some reports contains a hundred memos and so on.
How do I convert those reports to IBO, the easiest way?
// Johan
--- In IBObjects@yahoogroups.com, "Dmitriy A. Beloshistov" <torin@...>
wrote:
But, I have a lot of reports including ibx components, like
frIBXDatabase and frIBXQuery with sql code etc. The reports are
already designed with bands etc that point to those ibx components.
Some reports contains a hundred memos and so on.
How do I convert those reports to IBO, the easiest way?
// Johan
--- In IBObjects@yahoogroups.com, "Dmitriy A. Beloshistov" <torin@...>
wrote:
>
>
> It is problem? You has installed IBONative pack for FR? It contains
> IB_Connection and IB_Query for FR. IBO pack from FR included IBOxxx
> components.
> a) Put on form frReport, frDBDataset,IB_Query.
> b) frReport->frDBDataset->IB_Query
>
> I`m don`t see reason for direct access to IB_Connection component inside
> report, but:
> a) Report.Dataset is link IB_Query
> b) IB_Query has links to IB_Connection and IB_Transaction
>
> About connect to FR without visual components:
> Report:=TfrReport.Create(....)
> Report.Dataset:=MyDataQuery; // IB_Query
> // ect....
> Report.DesignReport;
>
> WBR,Dmitry Beloshistov AKA [-=BDS=-]
> -----Original Message-----
> From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com] On
> Behalf Of irogla
> Sent: Thursday, December 13, 2007 7:52 PM
> To: IBObjects@yahoogroups.com
> Subject: Re: [IBO] D7 and FastReport2.53 vcl
>
> Ok, that worked.
>
> But how do I connect to a FB database from inside a FR report?
> I did it before with visual components from IBX (TfrIBXComponents):
> TfrIBXDatabase and TfrIBXQuery. How do I connect to FR without visual
> components? Can I access a firebird component in my delphi project, from
> inside my report?
>
> I thought Powerpack was a package with fast report components for IBO.
>
> // Johan
>
> --- In IBObjects@yahoogroups.com <mailto:IBObjects%40yahoogroups.com> ,
> "Dmitriy A. Beloshistov" <torin@>
> wrote:
> >
> >
> > Check these defines in FR.INC file.Must be as:
> >
> > //------------------- Interbase Objects (IBO) components ------------
> > // Allows using IB_Objects.
> > {$DEFINE IBO}
> > // Also uncomment the following line if you have IB_Objects ver4.0+.
> > {$DEFINE IBO4}
> >
> > Check REQUIRES section in FR7.dpk. Must be as:
> >
> > requires
> > VCL,
> > VCLSMP,
> > DESIGNIDE
> > {$IFDEF IBO}
> > {$IFDEF IBO4}
> > , IBO40CRT,
> > IBO40FRT,
> > IBO40TRT,
> > IBO40VRT,
> > IBO40XRT
> > {$ELSE}
> > , IBO_D7
> > {$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}, RXCTL7 {$ENDIF}
> > {$IFDEF MWEDIT}, mwEdit_D7 {$ENDIF}
> > {$IFDEF QBUILDER}, OQB70 {$ENDIF};
> >
> > P.S. I`m use D6 + FR 2.5x + latest IBO - all OK.
> >
> > WBR,Dmitry Beloshistov AKA [-=BDS=-]
> > -----Original Message-----
> > From: IBObjects@yahoogroups.com <mailto:IBObjects%40yahoogroups.com>
> > [mailto:IBObjects@yahoogroups.com <mailto:IBObjects%40yahoogroups.com>
>
> > ] On Behalf Of irogla
> > Sent: Thursday, December 13, 2007 2:53 PM
> > To: IBObjects@yahoogroups.com <mailto:IBObjects%40yahoogroups.com>
> > Subject: [IBO] D7 and FastReport2.53 vcl
> >
> > Hi,
> >
> > I'm currently moving from IBX to IBO and installed the IBO4 for delphi
>
> > 7. It went ok and everything works.
> >
> > But I'm using fastreport2.53 vcl, and used the ibx components.
> > I'm now trying to get IBO to work with FR2.53 vcl as well, but I don't
>
> > know how.
> >
> > I downloaded the powerpack 2.47 and tried to compile and install the
> > DBEngine FR_IBO, FRIBO5.dpk. The problem is that the package can't be
> > compiled because files are missing. It is not a path problem, it is
> > files does not exists at all. I wan't to know why the package isn't
> > working and what I can do to make it work?
> >
> > // Johan
> >
>