Reputation: 2338
The FastReport's designer lists all the fields by the FieldName property. In my project, the design of the reports will be done by other people that are not developers and the FieldName sometimes is not a good name. Can I make the field list display the DisplayLabel intead of the FieldName?
Upvotes: 1
Views: 710
Reputation: 26
You can change the fieldname aliases in the DBDataset components provided by FastReport, just double click on it to get the alias manager.
Upvotes: 1
Reputation: 1336
If your are using SQL for getting the data the simplest solution will be aliasing the field names with "AS"
Upvotes: 0