I am writing an application in Delphi 5 and trying to retrieve a list of database fields that are actualy used in the report connected to. I can obtain the list of tables using the syntax :
tpTableName := CRReport.Database.Tables[tpI].Name;
I can then get a list of Fields for this table but this list contains the full set of fields regardless of whether used in the report or not.
Can anyone help point me in the right direction with this ?
tpTableName := CRReport.Database.Tables[tpI].Name;
I can then get a list of Fields for this table but this list contains the full set of fields regardless of whether used in the report or not.
Can anyone help point me in the right direction with this ?