begin
    Page1.LeftMargin:=20;
    Page1.RightMargin:=10;
    Page1.TopMargin:=10;
    Page1.BottomMargin:=10;       Â
end.
or in Delphi's code
var page: TfrxReportPage;
begin
    Page:=TfrxReportPage(frxReport1.FindObject('Page1'));
    Page.LeftMargin:=20;
    Page.RightMargin:=10;
    Page.TopMargin:=10;
    Page.BottomMargin:=10;
    frxReport1.ShowReport();
end;
I have a similitar report, but with a masterdata band with a lot of records, i need to change only first page top margin in report code (i use dialog page to user especify the top margin in cm)... what i do this?
Comments