这是我目前的代码。
Sub PrintMasterTime()
Dim PropVal As Integer
PropVal = ActiveDocument.CustomDocumentProperties(MasterTime).Value
Print PropVal
End Sub
编译错误:Method not valid without suitable object
不确定为什么不打印。 "MasterTime"
是我的自定义文档属性的名称。
答案 0 :(得分:1)
您需要使用字符串调用CustomDocumentProperties
。你忘记了引号。
PropVal = ActiveDocument.CustomDocumentProperties("MasterTime").Value