Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Word.Application wordApp = Application;
wordApp.Documents.Open(mypath+"Add Picture.doc");
//Add picture to Doc
this.Application.Selection.InlineShapes.AddPicture("download.jpg");
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
//Add picture
builder.InsertImage(MyDir + "download.jpg");
doc.Save("Adding Picture.doc");
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.