-1

I saw in an earlier post/question that DevExpress' XtraReports was used successfully to do this. Can anyone elaborate on this solution? What I really want to do is just print received TIFF images using the service we are developing. Don't need desktop interaction, just a way to grab a TIFF image and push it to the printer of our current choice.

4

1 回答 1

0

如果您使用过 Xtrareports,这应该会对您有所帮助。您需要使用 ReportPrintTool 来完成此任务。

        XtraReport1 rep = new XtraReport1();
        ReportPrintTool tool = new ReportPrintTool(rep);
        tool.Print(PrinterName); 
于 2013-07-15T15:32:35.130 回答