In VFP 7, is there a way to print multiple copies of the same report without calling the report form twice? For example, I have a cursor with 51 records and I want collated copies of the report. Right now I do the following;
is there a better way? Can I just do something like;
Thanks for any advice.
Code:
for i = 1 to alen(idnumber)
for n = 1 to number_of_copies
report form reportname for id = idnumber[i,1] to printer noconsole
endfor
endfor
Code:
select("cursor")
report form reportname to print noconsole 2_copies