jklstw
一般會員
積分 369
發文 40
註冊 2005-9-7
狀態 離線
|
#1 〔求助〕有關Word 巨集
請問各位大大,我在Word建立了「在 Word 中開啟文件時 FILENAME 欄位並會自動更新的巨集」,但是我想套用在每個Word檔都用,而不是每次都須重新建立,請問這該怎麼解決呢?以下是巨集的程式碼,感謝各位!
Sub AutoOpen()
'
' AutoOpen Macro
' Macro created date by username
'
Dim aStory As Range
Dim aField As Field
For Each aStory In ActiveDocument.StoryRanges
For Each aField In aStory.Fields
aField.Update
Next aField
Next aStory
End Sub
|
|