繁体   English   中英

如何通过 vb6 打印 excel 文件?

[英]how to print excel file via vb6?

我有一个由 vb6 应用程序创建的 excel 文件,保存后,我希望将其打印到默认打印机中。

Tnx,任何帮助将不胜感激。

Private Sub Command1_Click()
    Dim xlApp As Excel.Application
    Dim xlWB As Excel.Workbook
    Dim xlSH As Excel.Worksheet

    'open excel application
    Set xlApp = New Excel.Application
    'Open excel workbook
    Set xlWB = xlApp.Workbooks.Open(FileName:="C:\YourFile.xls")
    'There are two ways to access specific worksheets
    'By index number (the first worksheet in this case)
    Set xlSH = xlWB.Worksheets(1)
    'or by the Sheet's Name
    Set xlSH = xlWB.Worksheets("TestSheet")

    PrintSheet xlSH, "MyFoot", "MyHead"

    'Close workbook (optional)
    xlWB.Close
    'Quit excel (automatically closes all workbooks)
    xlApp.Quit
    'Clean up memory (you must do this)
    Set xlWB = Nothing
    Set xlApp = Nothing
End Sub

Sub PrintSheet(sh As Worksheet, strFooter As String, strHeader As String)
    sh.PageSetup.CenterFooter = strFooter
    sh.PageSetup.CenterHeader = strHeader
    sh.PrintOut
End Sub

但是,要回答您的问题,您可以使用:

ActiveWorkbook.PrintOut Copies:=1, Collate:=True

你可以在这里找到很多信息: http://www.exceltip.com/excel_tips/Printing_in_VBA/210.html

无论如何,我坚持认为,您应该接受以前问题的答案,否则人们不会关心回答您的新问题。

最大限度

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM