asked on
ASKER
ASKER
ASKER
ASKER
Delphi is the most powerful Object Pascal IDE and component library for cross-platform Native App Development with flexible Cloud services and broad IoT connectivity. It provides powerful VCL controls for Windows 10 and enables FMX development for Windows, Mac and Mobile. Delphi is your choice for ultrafast Enterprise Strong Development™. Look for increased memory for large projects, extended multi-monitor support, improved Object Inspector and much more. Delphi is 5x faster for development and deployment across multiple desktop, mobile, cloud and database platforms including 32-bit and 64-bit Windows 10.
TRUSTED BY
In main program (mainForm) you fill the listview with data.
Then create a form with quickreport on it.
for example:
in main:
Application.CreateForm(TFo
Form1.QuickRep1.Preview;
in report:
before.. implementation
var
Lw_count : integer;
procedure TForm1.QuickRep1BeforePrin
begin
Lw_count := -1;
end;
procedure TForm1.QuickRep1NeedData(S
begin
MoreData := Lw_count < mainForm.listview.items.co
inc(Lw_count);
end;
procedure TForm1.DetailBeforePrint(S
-- process : mainForm.listview.items
Not tested- just from head.
worth to try.