When creating a Word Document using:
Imports Word = Microsoft.Office.Interop.Word
Dim reportWord As New Word.Application
Dim reportDoc As Word.Document
How do I insert an image? That is, how do I do the VB.NET equivalent of going into Word and doing an "Insert->Picture->From File"?
Adding text and text formatting is easy enough, but I cannot seem to find documentation on adding images to the document.
Imports Word = Microsoft.Office.Interop.Word
Dim reportWord As New Word.Application
Dim reportDoc As Word.Document
How do I insert an image? That is, how do I do the VB.NET equivalent of going into Word and doing an "Insert->Picture->From File"?
Adding text and text formatting is easy enough, but I cannot seem to find documentation on adding images to the document.