Displaying Boolean Field Values

Formatting boolean data fields with ReportBuilder can be performed using either of the following techniques:

    1. Specify a value for the TppDBText.DisplayFormat property.

Example:

DBText1.DisplayFormat := 'True;False';
    1. Specify a value for the TField.DisplayValues property of the dataset.

Example:

TField1.DisplayValues := 'Yes;No;'

Note: If you have TField.DisplayValues assigned, please do not assign DBText.DisplayFormat.