Board index » delphi » Invoices-one by one???

Invoices-one by one???

Pls. tell me the appropriate soln for my problem. I have to display
invoices one by one for a customer. The header will be the companies
header. So this information is fixed and will come in page header. The
invoice details (particulars, rate , amont) will come in the detail
band. But as it is a invoice. I want that only one invoice shd. come on
one page. Thus in detail band also my information is though variable but
on a page I need to show only 1 invoice (one tuple of the invoice table)
at a time. How do user QR reports for this. Pls. explain soon
Regds,
Ravi.
 

Re:Invoices-one by one???


I would do on the group header (where the customer info is).
a BeforePrint
...
begin
    If QuickRep1.PageNumber > 1 then
        QuickRep1.NewPage;
end;

--
ISC Jos Manuel Gmez-Ferrer y Reguero
Gerente de Sistemas
Qumica Adhn, S.A. de C.V.
www.paco.net.mx

Quote
Ravi <r...@chemquick.com> wrote in message

news:37FD16A4.931D8C0E@chemquick.com...
| Pls. tell me the appropriate soln for my problem. I have to display
| invoices one by one for a customer. The header will be the companies
| header. So this information is fixed and will come in page header. The
| invoice details (particulars, rate , amont) will come in the detail
| band. But as it is a invoice. I want that only one invoice shd. come on
| one page. Thus in detail band also my information is though variable but
| on a page I need to show only 1 invoice (one tuple of the invoice table)
| at a time. How do user QR reports for this. Pls. explain soon
| Regds,
| Ravi.
|

Re:Invoices-one by one???


Or use ForceNewPage property.

Sergei Soudakov

Re:Invoices-one by one???


I thought about that, but it would give a blank page at the begining...

--
ISC Jos Manuel Gmez-Ferrer y Reguero
Gerente de Sistemas
Qumica Adhn, S.A. de C.V.
www.paco.net.mx

Quote
Sergei Soudakov <b...@uniqum.tomsk.su> wrote in message

news:7tmbl9$p087@forums.borland.com...
| Or use ForceNewPage property.
|
| Sergei Soudakov
|
|

Other Threads