• Hi

    I am using the PDFViewer component and have the following code:

    using (WPViewPDF.PDFViewer pdfViewer = new WPViewPDF.PDFViewer())
    {
    pdfViewer.ViewerStart("xxx", "xx", 0);
    pdfViewer.LoadFromFile(fileName);
    pdfViewer.Command(WPViewPDF.commands.COMPDF_SelectPrinter, printer);
    pdfViewer.Command(WPViewPDF.commands.COMPDF_Print, qty);
    }

    When the document is printed, the 'Document Name' property when you view the Windows Print Queue is set to be the filename of the document. Is there any way of setting this property to something else using the component?

    Thank you.