Данный код переберает все контролы на диалоговой форме.
var
i,j:integer;
begin
for i:=0 to frxReport1.PagesCount-1 do
if frxReport1.Pages[i] is TfrxDialogPage then
for j:=0 to frxReport1.Pages[i].Objects.Count - 1 do
ShowMessage(TfrxComponent(frxReport1.Pages[i].Objects[j]).Name);//имя контрола
end;
Комментарии