Hi,
i want to move objects before printing a report.
I tried out with the TOP property of the object like a label.
I ve taken the before print property. The result is that the label is positioned near the top line. That is not the desired position.
Here the code:
procedure Pag1OnBeforePrint(Sender: TfrxComponent);
begin
if Engine.FinalPass then
BEGIN
if Edit1.text = 'TEST' then
Edit1.top:= 10;
END;
END;
Have you an idea how to use it correct ?
