Hello
I make this:
sele 0
use myreport.frx
go top
repla myreport.expr with "COPIES=3"
repla myreport.expr with babla...
use
report form myreport.frx to print ...
Is going to print out 3 times
How can I write the number of the copied to the page?
THX,
Cerub
> for icopy=1 to 3
> go top
> repo form.... to print noco
> endfor
>
> > Hello
> >
> > When I printed 1 page to 3 copies,This is 1 click on print command button.
> > How can I write the number of the copied to the page?
> >
> > THX,
> > Cerub
> >
> > > AFAIK, number of copies are controled by printer in case you set it from page setup dialog. So report is called ones, no matter how many copies will be printed. What you could do is to call the report in the loop as many times as number of copies you wish, and display the loop number at the report page.
> > >
> > >
> > > > Hello!
> > > >
> > > > I make multiple copies report (printed 3 page)
> > > >
> > > > How can I write the number of the copied to the page?
> > > >
> > > > write to page1 --> This is 1 st copied
> > > > write to page2 --> This is 2 nd copied
> > > > write to page3 --> This is 3 th copied
> > > >
> > > > THX,
> > > > Cerub