Subject Re: [IBO] IB_Grid Columns
Author Helen Borrie
At 10:11 PM 10/08/2005 +0000, you wrote:
>Is there a way to set the number fo column to be displayed with the
>TIB_Grid component (like TDBGrid Columns property)? I have a query
>with 10 fields but I want to display only 5 in the grid, the other
>ones I needed for other purposes.

Not in the same way as the VCL grid. The native IBO controls are driven by
the attributes that you set for the data in the dataset. The columns that
are displayed by the ib_grid are determined by the FieldsVisible attribute.
IBO creates one column for each column in the dataset that has
FieldsVisible true.

Beyond that, you can set a specific left-to-right column order using GridLinks.

Helen