This is not possible. In most cases, DevCopies instructs the printer driver to create the copies, which in turn instructs the printer to create the copies. Therefore you can not make any intervention into that process.
The only option is that you start three different print jobs. Using VPE Professional Edition v4.0 or higher, you can do the following:
- Code: Select all
// Insert an object:
Doc.Print(1, 1, "customer copy")
// Retrieve a handle to that object:
TVPEObject tmp_object = Doc.LastInsertedObject
// Create a print job, use "false" so that no printer setup-dialog is shown:
Doc.PrintDoc(false)
// Delete the "customer copy" object:
Doc.DeleteObject(tmp_object)
Afterwards you can loop through this code to insert the next text object, like "administration copy".
Please note that the ability to delete objects is a new feature of VPE Professional Edition v4.0 and higher.