使用vb.net和Word 2010
Dim oWord As msword.Application
Dim oDoc As msword.Document
oDoc = oWord.Documents.Add(TextBox1.Text)
MsgBox(oWord.ActiveDocument.Fields(1))
打开文档不是问题。读取字段的值会导致错误,例如Argument 'Prompt' cannot be converted to type 'String'
。
我试过在引号中命名字段,这也不起作用。我试过Variable.field(1)
- 这也让我错误
帮助表示赞赏!