Anyone know of a Aspose.Word expert?

My company is working on a complex report generation tool. Can anyone recommend someone who knows how to use Aspose.Word for .NET to generate complex reports with imbedded pictures, graphs, tables, excel spreadsheets, etc…?
Thanks.

Hi Lee,

Thanks for your inquiry. Aspose.Words is a class library that enables your applications to perform a great range of document processing tasks. Aspose.Words supports DOC, DOCX, RTF, HTML, OpenDocument, PDF, XPS, EPUB and other formats. With Aspose.Words you can generate, modify, convert, render and print documents without utilizing Microsoft Word®. For more information please see the following link:
https://docs.aspose.com/words/net/

Please note that Aspose.Words tries to mimic the same behaviour as MS Word do. Please read following documentation links for your kind reference.
https://docs.aspose.com/words/net/features/
https://docs.aspose.com/words/net/working-with-tables/
https://docs.aspose.com/words/net/document-builder-overview/

Unfortunately, inserting new OLE objects into Word documents and updating existing OLE objects is not supported at the moment. We had already logged this feature request as WORDSNET-1206 in our issue tracking system.

In the future we will consider adding a public API that allows creating charts from scratch in Word documents (WORDSNET-4617). You will be notified via this forum thread once these feature are available.

Hope this answers your query. Please let us know if you have any more queries.

Do you mean I can’t insert an Excel spreadsheet using Aspose.Word?

Hi Lee,

Thanks for your inquiry. Yes, you can not insert MS Excel document into MS Word document by using Aspose.Words at the moment. We will update you via this forum thread once this feature is available.

Can you please give me an estimate of when inserting Excel documents into a Word document using Aspose.Words will be available? Will it be available before 2014?
Is there a work-around, perhaps some integration between Aspose.Excel and Aspose.Word? We use both products.
Thanks.

Hi Lee,

Thanks for your inquiry. I am afraid the requested feature has been postponed till a later date due to some other important issues and new features. We will inform you as soon as there are any further developments.We apologize for your inconvenience.

However, you can use Aspose.Cells to create charts and convert the charts to image. Once you have image of chart, you can insert that image to Word document by using Aspose.Words as shown in following code snippet.

// Instantiating a Workbook object
Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();
// Adding a new worksheet to the Excel object
int sheetIndex = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by
// passing its sheet index
Aspose.Cells.Worksheet worksheet = workbook.Worksheets[sheetIndex];
// Adding a sample value to "A1" cell
worksheet.Cells["A1"].PutValue(50);
// Adding a sample value to "A2" cell
worksheet.Cells["A2"].PutValue(100);
// Adding a sample value to "A3" cell
worksheet.Cells["A3"].PutValue(150);
// Adding a sample value to "B1" cell
worksheet.Cells["B1"].PutValue(4);
// Adding a sample value to "B2" cell
worksheet.Cells["B2"].PutValue(20);
// Adding a sample value to "B3" cell
worksheet.Cells["B3"].PutValue(50);
// Adding a chart to the worksheet
int chartIndex = worksheet.Charts.Add(Aspose.Cells.Charts.ChartType.Pie3D, 5, 0, 15, 5);
// Accessing the instance of the newly added chart
Aspose.Cells.Charts.Chart chart = worksheet.Charts[chartIndex];
// Adding Series Collection (chart data source) to the chart ranging from "A1" cell to "B3"
chart.NSeries.Add("A1:B3", true);
// Converting chart to image.
chart.ToImage(MyDir + "Chart.Jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
Document doc = new Document();

DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertImage(MyDir + "Chart.Jpeg");
doc.Save(MyDir + "AsposeOut.docx");

The issues you have found earlier (filed as WORDSNET-1206) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(53)

The issues you have found earlier (filed as WORDSNET-4617) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(1)

The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan