本文介绍了如何通过j .net打印excel文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为用户选择文件夹创建一个应用程序,然后检索所有Excel文件并通过打印机进行打印.

I am creating an application for user select folder then all excel file retrive and print through printer. how it possible.

推荐答案

ProcessStartInfo info = new ProcessStartInfo(myDocumentsPath); 
info.Verb = "Print"; 
Process.Start(info); 



这样就可以打印文档,而无需使用任何互操作方式.



This will print a document without having to use any sort of interop.


这篇关于如何通过j .net打印excel文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 09:49