2008-10-15 163 views

回答

3

如何使我的word文檔中顯示:

插入 - >現場>類別:DocumentAutomation->字段名稱:DocVariable->域代碼按鈕 - >然後輸入變量的名稱。

+2

並只顯示他們Alt + F9 – 2016-07-06 17:01:48

6

您可以使用Microsoft Visual Basic for Applications Variables集合來設置和檢索Word文檔或模板中字符串變量的內容。

另外,可以使用DocVariable字段檢索文檔變量的值,該值已設置爲在Word文檔中顯示。

來源:How to store and retrieve variables in Word documents

Sub GetSetDocVars() 

Dim fName As String 
fName = "Jeff Smith" 
' Set contents of variable "fName" in a document using a document 
' variable called "FullName". 
ActiveDocument.Variables.Add Name:="FullName", Value:=fName 
' Retrieve the contents of the document variable. 
MsgBox ActiveDocument.Variables("FullName").Value 

End Sub 
+0

但是像這個代碼進入什麼地方?這是一個Word腳本或什麼? – 2016-12-16 14:28:01

相關問題