I don't want to show some datasets in the data dictionary and in the report.

Question: I don't want to show some datasets in the data dictionary and in the report.

Answer:

Use TfrReport.Dictionary.DisabledDatasets:

1
2
3
4
5
6
7
with frReport1.Dictionary do
begin
// turn of this dataset
DisabledDatasets.Add('CustomerData.Bio');
// or, turn off entire datamodule/form
DisabledDatasets.Add('CustomerData*');
end;