Please respond. Thank you!
FYIP, I happen to see an example for inserting OLE object in Excel, but the same functionality is missing in Word. Please Help.
Please respond. Thank you!
FYIP, I happen to see an example for inserting OLE object in Excel, but the same functionality is missing in Word. Please Help.
The issues you have found earlier (filed as WORDSNET-1206) have been fixed in this .NET update and this Java update.
The issues you have found earlier (filed as WORDSNET-1206) have been fixed in this .NET update and this Java update.
I wonder are there documentations or examples of how to insert OLE object with latest Aspose Words ?
Hi Jiaguo,
DocumentBuilder builder = new DocumentBuilder(doc);<o:p></o:p>
Stream memoryStream = File.OpenRead(MyDir + “Book1.xls”);<o:p></o:p>
Shape oleObject = builder.InsertOleObject(memoryStream, “Excel.Sheet.8”, true, null);<o:p></o:p>
doc.Save(MyDir + @“out.docx”);DocumentBuilder builder = new DocumentBuilder(doc);<o:p></o:p>
Image image = Image.FromFile(MyDir + “Aspose.Words.png”);<o:p></o:p>
Shape oleObject = builder.InsertOleObject(MyDir + “Doc1.docx”, true, false, image);<o:p></o:p>
doc.Save(MyDir + @“out.docx”);