搜尋此網誌

2020年11月17日 星期二

word VBA Change active file & 將指定的word檔關掉

 Document.Activate 方法 (Word),

參考網頁:https://docs.microsoft.com/zh-tw/office/vba/api/word.document.activate

Sub OpenSales()

'Sales.doc must exist and be open but not active. Documents("Sales.doc").Activate End Sub

指定某個word關掉的方式:
有其它很多方式,參考網頁:https://bettersolutions.com/word/documents/vba-closing.htm

Application.Documents("document.doc").Close 
Documents("document.doc").Close
Documents(1).Close
objDocument.Close
Close後面可以加上參數 
wdDoNotSaveChanges、 wdPromptToSaveChanges或wdSaveChanges。


沒有留言:

張貼留言