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:
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

  • gordkgordk St.Catherines On. Canada.
    edited 1:09PM
    in the obp event of the band containing the memo
    memoname.Visible := <Line> = 1;
    ;)
  • edited 1:09PM
    THX - it works, but I didn't understand why it doesn't work in the obp event of the memo itself!?!?!?!
  • gordkgordk St.Catherines On. Canada.
    edited 1:09PM
    for some reason the expression on the right does not equate to true in the obp of the memo may be syntax i'll test later.
    ;)

Leave a Comment