runtime disable field in fast report
Hi I would like to know how to write the code in dephi or fast report that runtime to disable the frxMemoView component in fast report?
for example, if the field is null, i want to that field not shown on the report.
Thanks.
for example, if the field is null, i want to that field not shown on the report.
Thanks.
Comments
I tried this
if <frxDBDataset2."REFERENCE"> = NULL then
Memo40.Visible := false;
but it doesn't work.