Error when creating an instance of Word in VB.net

2019-08-09 23:09发布

I am getting an error when I run this app in VS 2010 (it works fine in VS 2008)

Private Sub GenerateInvoice()

Dim emptyObject As Object = System.Reflection.Missing.Value

Dim wordApp As New Word.Application
wordApp.Visible = True

Dim InvoiceDoc As New Word.Document
InvoiceDoc = wordApp.Documents.Add(InvoicePath, emptyObject, emptyObject, emptyObject)

Dim totalFields As Integer = 0

For Each mergeField As Word.Field In InvoiceDoc.Fields

The error occurs at the For Each line

"Object reference not set to an instance of an object."

Am I missing something here?

2条回答
看我几分像从前
2楼-- · 2019-08-09 23:16

Maybe the InvoicePath used in the instance run via VS2010 is invalid and so the call to Documents.Add fails?

Are you running both VS2010 and VS2008 on the same machine? And is the InvoicePath set to the exact same path in both instances?

查看更多
贪生不怕死
3楼-- · 2019-08-09 23:29

Try

 Dim InvoiceDoc As Word.Document
 wordApp.Documents.Add(InvoicePath, emptyObject, emptyObject, emptyObject)
 InvoiceDoc=wordApp.ActiveDocument
查看更多
登录 后发表回答