Visible / Hidden - How?
In Fr2.5 it was quit easy to prevent an object from showing by simple writing the necessarry code in the lower memo, but in Fr3 I run into problems doing the same. That's what I've tryed:
But it doesn't work! The <Line> itself seems to be interpreted well:
This shows the <Line> beginning from 1...x!
So how to write the logic above in a valid manner?
procedure GroupNameOnBeforePrint(Sender: TfrxComponent);
begin
 TfrxMemoView(Sender).Visible := <Line> = 1;
end;
But it doesn't work! The <Line> itself seems to be interpreted well:
procedure GroupNameOnBeforePrint(Sender: TfrxComponent);
begin
 TfrxMemoView(Sender).Memo.Text := <Line>;
end;
This shows the <Line> beginning from 1...x!
So how to write the logic above in a valid manner?
Comments
memoname.Visible := <Line> = 1;