3

当我使用ReportViewer技术(LocalReport)从我的计算机中打印出资源时Microsoft XPS printer,它给了我默认的文件名: *.xps

我会以编程方式更改它,我该怎么做?

我改变了两个属性:

        _reportViewer.LocalReport.DisplayName = _printFileName;
        _reportViewer.PrinterSettings.PrintFileName = _printFileName;

似乎大多数技术都能理解我想要什么。(CutePDF,其他打印机),但不是 Microsoft XPS 编写器。建议?

4

1 回答 1

0

我相信您所缺少的只是另外一行:

_reportViewer.PrinterSettings.PrintToFile = true;
于 2012-09-24T17:49:55.363 回答