stretched memo height
Is there a way to get the memo.height of a memo box after (and if) it has been streched??? This is what I have for code to dynamically set the top of the memo that follows it in the same band.
if finalPass then
begin
Memo36.top:= Memo36.top + (Memo29.height - 10);
Line8.Top:= Line8.top + (Memo29.height - 10);
Memo34.top:= Memo34.top + (Memo29.height - 10);
end;
Memo29.height always returns 20 (The original hieght). not the hieght after being stretched.
I could also solve it with a group band but this is a sub-report that doesn't allow you to use grouping.
Any Ideas??? I am using fast reports 2.53.
Thank you very much,
if finalPass then
begin
Memo36.top:= Memo36.top + (Memo29.height - 10);
Line8.Top:= Line8.top + (Memo29.height - 10);
Memo34.top:= Memo34.top + (Memo29.height - 10);
end;
Memo29.height always returns 20 (The original hieght). not the hieght after being stretched.
I could also solve it with a group band but this is a sub-report that doesn't allow you to use grouping.
Any Ideas??? I am using fast reports 2.53.
Thank you very much,