Subject | Re: [IBO] Problem with IBO and FastReport |
---|---|
Author | Jörg Schiemann |
Post date | 2001-06-06T08:27:11Z |
> Hello,Hi Elmar,
>
> i got a problem with IBO and FastReport if i use a Decimal(18,0).
> If i try to print a IB_query ,i got the message that the
> Variantoperation is not valid.
> I use D5 with IBO 3.6Dg.
> I tried to contact Alexander, but up to now, i've heared nothing from
> him.
> Has someone solved this problem ?
> Best regards
>
> Elmar Knoerzer
Alexanders support is long away from Jasons :-(
FR can't handle 64bits Integer.
I use FR' variables and fill them with the OnBeginBand event.
eg
var sKundenNr: string;
if Band.Name = 'bSeitenkopf1' then begin
sKundenNr := qryKunden.FieldByName('KUNDEN_NR').AsString;
frRechnungen.Dictionary.Variables['KundenNr'] := sKundenNr;
end;
HTH
Jörg