Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Drawing directly on an area of the report

edited October 2001 in General
I have some code defined like this:

procedure DrawTheStuff(Canvas: TCanvas; R: TRect);
begin
Canvas.MoveTo(R.Left, R.Top);
Canvas.LineTo(R.Right, R.Bottom);
end;

(That's not the actual code - the actual code is a *lot* more complex, but
this serves to illustrate my point.

I want to put something on my report where I can then call DrawTheStuff to
output the graphics commands to the report. How do I do that with
ReportBuilder?

-Eric Harmon

Comments

This discussion has been closed.