日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

WOrd ,excel实现打印功能

發(fā)布時(shí)間:2025/7/25 48 豆豆
生活随笔 收集整理的這篇文章主要介紹了 WOrd ,excel实现打印功能 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

??????????? PrintDocument print = new PrintDocument();
??????????? string sDefault = print.PrinterSettings.PrinterName;//默認(rèn)打印機(jī)名
??????????? string s = "";
??????????? foreach (string sPrint in PrinterSettings.InstalledPrinters)//獲取所有打印機(jī)名稱
??????????? {
??????????????? s = sPrint;
??????????? }
??????????? return;
??????????? OpenFileDialog fileDialog = new OpenFileDialog();
??????????? //fileDialog.Title = "請(qǐng)選擇文件";
??????????? //fileDialog.Filter = "excel03文件(*.xls)|*.xls";
??????????? //fileDialog.FilterIndex = 1;
??????????? //fileDialog.RestoreDirectory = true;

??????????? if (fileDialog.ShowDialog() == DialogResult.OK)
??????????? {
??????????????? #region excel
??????????????? //Microsoft.Office.Interop.Excel.ApplicationClass xlsApp = new Microsoft.Office.Interop.Excel.ApplicationClass();
??????????????? //xlsApp.Visible = true;
??????????????? //object oMissing = System.Reflection.Missing.Value;
??????????????? //Microsoft.Office.Interop.Excel.Workbook xlsWorkbook = xlsApp.Workbooks.Open(fileDialog.FileName, 0, true, 5, oMissing, oMissing, true, 1, oMissing, false, false, oMissing, false, oMissing, oMissing);
??????????????? //Microsoft.Office.Interop.Excel.Worksheet xlsWorksheet = (Microsoft.Office.Interop.Excel.Worksheet)xlsWorkbook.Worksheets[1];
??????????????? xlsWorksheet.PrintPreview(null);
??????????????? //xlsWorksheet.PrintOut(1, 2, 1, false, oMissing, true, false, oMissing);
??????????????? //xlsApp.Visible = false;
??????????????? //xlsWorksheet = null;
??????????????? #endregion
??????????????? #region word
??????????????? object wordFile = fileDialog.FileName;
??????????????? object oMissing = Missing.Value;
??????????????? object copies = "1";
??????????????? object oTrue = true;
??????????????? object oFalse = false;
??????????????? object doNotSaveChanges = Microsoft.Office.Interop.Word.WdSaveOptions.wdDoNotSaveChanges;
??????????????? Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application();
??????????????? appWord.Visible = false;
??????????????? appWord.DisplayAlerts = Microsoft.Office.Interop.Word.WdAlertLevel.wdAlertsNone;
??????????????? string defaultPrinter = appWord.ActivePrinter;
??????????????? Microsoft.Office.Interop.Word.Document doc = appWord.Documents.Open(
??????????????????? ref wordFile ,
??????????????????? ref oMissing,
??????????????????? ref oTrue ,
??????????????????? ref oFalse ,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing);
??????????????? //彈出打印設(shè)置
??????????????? //appWord.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFilePrint].Show(ref oMissing);
??????????????? //appWord.Visible = false;
??????????????? appWord.ActivePrinter = "hp3030 ";
??????????????? doc.PrintOut(
??????????????????? ref oTrue,
??????????????????? ref oFalse,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref copies,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing,
??????????????????? ref oMissing);
??????????????? appWord.ActivePrinter = defaultPrinter;
??????????????? doc.Close(ref doNotSaveChanges, ref oMissing, ref oMissing);
??????????????? appWord.Quit(ref oMissing, ref oMissing, ref oMissing);
??????????????? doc = null;
??????????????? appWord = null;
??????????????? GC.Collect();
??????????????? #endregion word

?

??????????? }

轉(zhuǎn)載于:https://www.cnblogs.com/swarb/archive/2012/04/11/9924430.html

總結(jié)

以上是生活随笔為你收集整理的WOrd ,excel实现打印功能的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。