Need verify all memoview fields from Delphi

Hi

i need to verify some memoview fields from delphi checking the Tag property of the component.

how can i do that?

best regards



Comments

  • edited February 2009
    Thanks anyway a solve my problem do it that:
          for I := 0 to frxReport1.ComponentCount - 1 do
          begin
             if frxReport1.Components[i] is TfrxMemoView then
             begin
                TfrxMemoView(frxReport1.Components[i]).Visible := Condition;
    

Leave a Comment