Jean
2007-09-13 12:45:42 UTC
Hi friends,
I wish to use a rave report (rav file) containing a single page, with some text data and text fields.
The values for these text fields are generate by Delphi code (SetParam).
I don't need any database connection.
In my Delphi code, i use the following for printing my report:
procedure TForm1.preview_Click(Sender: TObject);
begin
with RvProject1 do
begin
Open;
Execute;
Close;
end; // with RvProject1
end; // preview_Click
But, my problem is that i'm limited to the number of text fields i created in the 'Page1'.
How can i instruct (in Delphi or in Rave) to print a second (third,...) 'page1' with my data value generated in Delphi ?
For example, i create a page1 in rave containing 10 text fields.
At execution, i have generated 5 fields for printing in my reports => no problem.
At another execution, i have generated 15 fileds for printing. => problem: I have only one 'page1' printed with my first 10 text fields,
the next 5 generated values are not printed.
=> How can i 'add' a 'page1' to my printing report ?
Thank you very much for your support
Jean
I wish to use a rave report (rav file) containing a single page, with some text data and text fields.
The values for these text fields are generate by Delphi code (SetParam).
I don't need any database connection.
In my Delphi code, i use the following for printing my report:
procedure TForm1.preview_Click(Sender: TObject);
begin
with RvProject1 do
begin
Open;
Execute;
Close;
end; // with RvProject1
end; // preview_Click
But, my problem is that i'm limited to the number of text fields i created in the 'Page1'.
How can i instruct (in Delphi or in Rave) to print a second (third,...) 'page1' with my data value generated in Delphi ?
For example, i create a page1 in rave containing 10 text fields.
At execution, i have generated 5 fields for printing in my reports => no problem.
At another execution, i have generated 15 fileds for printing. => problem: I have only one 'page1' printed with my first 10 text fields,
the next 5 generated values are not printed.
=> How can i 'add' a 'page1' to my printing report ?
Thank you very much for your support
Jean