Subject Re: [IBO] Field DB KEY
Author Helen Borrie
At 08:17 AM 26/10/2004 +0000, you wrote:


>I have a TIB_Query and a TIB_Grid, why a field named ["DB KEY"]
>appears in the grid? It isn't a field of TIB_Query. How can I hide
>from my grid

It's there because the query has no KeyLinks. It's a field that exists on
every row in every table in a database. It is unique for every row in a
dataset, including joined sets, with a "life" that is not to be depended on
outside of the context of the current transaction.

You can hide any column in a dataset from displaying in grids by setting
its FieldsVisible property to false.

Helen