Subject Re: [IBO] TIBGrid Question
Author Ulrich
Hi Mo,

> The problem is that I get an extra field showing up in the grid called 'DB
> KEY'. Does anyone know what this is and why it is showing up and how I
can
> make it not visible.

I don't know excactly which meaning the db_key has, but it arrives if you
use "select * from table_xy". To make it invisible you can use the TIB_Query
property FieldVisible :

FieldsVisible.clear
FieldsVisible.add('DB_KEY=false')


best regards - Ulrich