New answers tagged reportbuilder
1
Well, as I understood, MS Report Builder does not understand special symbols.
Instead for new line you should use "vbCrLf" constant (http://msdn.microsoft.com/en-us/library/dd255261(v=sql.100).aspx)
0
Because the footer is PrintHeight = phStatic.
You can't change the property to phDynamic.
What you can to is to program code in the FooterBeforePrint like
procedure FooterBeforePrint
begin
if Memo1.Lines.Count >0 then
begin
Footer.Height:= 0.4 * Memo1.Lines.Count;
Memo1.Height:= Footer.Height;
end;
end
0
A straight up answer to your question would be (AFAIK) that this isn't (easily) possible.
On a related note, I think you'll have a hard time smoothening your current setup, because reports aren't designed for this task; you seem to be trying to use the report as a web form and as a report at the same time.
I would suggest a different approach to your ...
Top 50 recent answers are included