Catch the description field in the View (Firebird 2.5)
Posted: 07.11.2013, 12:27
How do I add a property (DisplayLabel) in the DataSet component Zeos. This property must contain a description of the field in the View.
This is the official forum of ZeosLib providing support to all ZeosLib users.
https://zeoslib.sourceforge.io/
Code: Select all
procedure TSomeForm.SomeQueryAfterOpen(Sender: TObject);
begin
SomeQuery.FieldByName('SOMECOLUMN').DisplayLabel := 'MyLabel';
end;