| property OutputName: string; |
| This property defines an alternate output device for the current printer. The output device can be another port, 'LPT3:', or a file on the disk, 'C:\APP\PRINTER.DMP'. The contents of the file that is created will contain actual printer commands and can be copied to a printer at a later time with a DOS command This can be useful for sending output to printers that are not hooked up to the current computer. To do this create the file, copy it to a computer hooked up to the printer and then use the copy command to send it to the printer port. |
| // COPY PRINTER.DMP LPT1 /B |
| RvNDRWriter1.OutputName := 'C:\APP\PRINTER.DMP'; |
| RvNDRWriter1->OutputName = "C:\APP\PRINTER.DMP";
|
|