Print n labels of each record

Hi,

I have a table with records of clients and a field with the number of labels of each client.

How can I make a report to print several labels for the same client?

Thank you in advance

Comments

  • Add DetailData band to report. Set DetailData.RowCount=1 (This is necessarily!) In MasterData1OnBeforePrint event set

    DetailData.RowCount:=<MasterDataDataSet."Quantity">

    Place fields from MasterData's dataset on DetailData Bend and set

    MasterData.Height=0

Leave a Comment