|
▼Gin_II さん:
今下記のモジュールを作成したのですが?
Excelが終了しなくて、枠?だけ残ってしまいます。
Excelを終了するにはどうすればいいのでしょうか?
よろしくお願いします。
Public Function T印刷()
Dim Excel As Object
Dim DB As DAO.Database
Dim RS As DAO.Recordset
Set Excel = GetObject("D:\伝票.XLS", "EXCEL.SHEET")
Set DB = CurrentDb
Set RS = DB.OpenRecordset("T抽出", dbOpenDynaset)
Excel.Application.Visible = True
Excel.Parent.WINDOWS(1).Visible = True
Do Until RS.EOF
Excel.Application.RANGE("H2:K2").Value = RS!日付
Excel.PrintOut
RS.MoveNext
Loop
RS.Close
Set RS = Nothing
Excel.Close False
Set Excel = Nothing
End Function
|
|