Dim Book As New XLS.Book ("E:\Attachments\aaa.xlsx")
Dim Sheet As XLS.Sheet = Book.Sheets(0)
sheet(1,1).value = "1"
Book.Save("c:\reports\test.xlsx") '保存工作簿 Dim Proc As New Process '打开工作簿 Proc.File = "c:\reports\test.xlsx" Proc.Verb = "Print" '指定动作 Proc.Start()
打印 完毕后 ,老提示 需要保存excel 才能退出。
这个有没办法 不让它提示这个信息 直接打印?