How to print a detail band any times per one record?
I have a database with 5 records and each record have two fields
fromTicketNo, toTicketNo (numeric). Now I want to print the detailband for
every record the information of this record x (value printtimes) times.
Example Table "PrintTickets":
Titel Price fromTicketNo toTicketNo
The Hero 5 $ 5 7
The Last Progammer 8 $ 8 12
Now I want to have 8 printed tickets:
The Hero 5 $ 5
The Hero 5 $ 6
The Hero 5 $ 7
The Last Progammer 8 $ 8 ... and so on
Can someone provide me with some hints on how to do this?
Thanks in advance!
Rainer
fromTicketNo, toTicketNo (numeric). Now I want to print the detailband for
every record the information of this record x (value printtimes) times.
Example Table "PrintTickets":
Titel Price fromTicketNo toTicketNo
The Hero 5 $ 5 7
The Last Progammer 8 $ 8 12
Now I want to have 8 printed tickets:
The Hero 5 $ 5
The Hero 5 $ 6
The Hero 5 $ 7
The Last Progammer 8 $ 8 ... and so on
Can someone provide me with some hints on how to do this?
Thanks in advance!
Rainer
This discussion has been closed.
Comments
place all of the controls in the detail band so that you can print the data
this way in one detail band print. Since the number of fields is constant,
then you know that you'll have to have a detail band like this:
-------------------DetailBand---------------------------
dbText(Titel) dbText(Price) dbText(fromFicketNo)
dbText(Titel) dbText(Price) dbText(toTicketNo)
----------------------------------------------------------
BTW, where is the 6 in your example coming from?
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com