hide memo view or band if there is no data
I have this report (attached) that have a some fields to print and a blob field to store text. The blob filed can have 7 lines of text or nothing so I need to not print any space if that blob field is empty. How I can do that ?
the memo name that I want to hide is "Memo16"
the memo name that I want to hide is "Memo16"
Comments
Thanks baloghi
procedure xxBeforePrint(Sender: TfrxComponent);
begin
NorthSouthChild.Visible := <NorthSouth> <> '';
end;
where NorthSouthChild is a child band, and (in this case) <NorthSouth> is a variable but it could be a field. This is real code but not tested with the scenario you describe.