Subject Re: [IBO] FreeReport & IBO4
Author Helen Borrie
At 08:24 AM 26/08/2004 +0000, you wrote:
>Hello
>
>I was trying to use FreeReport with IBO4. I got some valuable
>suggestions from Dmitry Beloshistov, but I'm still not able to
>recompile FreeReport with IBO4.
>
>I see in FreeReport source that it uses Delphi's TField class in
>DB.dcu. TField does have a DataSet property.
>
>If FreeReport is compiled with IBO support, it uses TIB_Column
>instead of TField. The problem is that TIB_Column does not have a
>DataSet property, and FreeReport's source has references like
>TIB_Column.DataSet.Active.
>
>What property does TIB_Column have instead of TField's DataSet?

MyColumn.Statement

>Can I substitute TField.DataSet.Active with some TIB_Column property?

MyColumn.Statement.Active

Helen