Hello Randal,
My email was blocked. Do you have another email.
Best regards,
Otto
Otto wrote:Hallo Rendal,
I think you can do it with the ONBeforePrint Event:
PascalScript
procedure F_GroupFooter1(Sender: TfrxComponent);
begin
GroupFooter1.Visible := <TestLogischeVariable> ; // not empty or whatever you want or pass a variable like I do it here
end;
What I also do is to use a memofield and set the StretchMode to SMMaxHeight.
Best regards,
Otto
procedure Memo43OnBeforePrint(Sender: TfrxComponent);
begin
if TRIM( Memo42.TEXT ) = 'noSales Tax' then // here is your condition
begin
showmessage ( Memo42.TEXT );
Memo43.TOP := 250;
end
else
begin
showmessage ( Memo42.TEXT );
Memo43.TOP := 164;
Memo43.LEFT := 64;
end;
end;
begin
end.
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: Google [Bot] and 105 guests