I am guessing you have a report that prints quotes. One quote either per body or per a subheader/subtotal
By default of course that will create a single document either for the printer or as a PDF file
if you would like to create a PDF file per quote you have two choices
1) Run the report for each quote
2) Use special coding inside the report to create multiple documents
As for #2 The ordereport sample in the Sample program shows how to do this
Essentially it uses the OnBreakOcurred event to hook into breaks and writes the current document to a PDF file. It then also closes the document and creates a new empty one. In the OnReportFinished event it then writes out the last document if nessecary
Mike