Hi
Install the component
on your local machine. Then add reference to Aspose.Words.dll assembly.
http://www.aspose.com/Products/Aspose.Words/Api/ReferencingAsposeWordsfromaNETProject.html
Then you can call the
Aspose.Words component using Aspose.Words namespace. See the following code.
‘create new document
Dim doc As Aspose.Words.Document
= New Aspose.Words.Document()
Dim builder As
Aspose.Words.DocumentBuilder = New
Aspose.Words.DocumentBuilder(doc)
builder.Write(“Hello World!”)
‘save document
doc.Save("out.doc")
To generate the
report using Aspose.Words you should use the Mail Merge feature. See the
following links for more information.
http://www.aspose.com/Products/Aspose.Words/Api/PreparingaDocument.html
http://www.aspose.com/Products/Aspose.Words/Api/ExecuteSimpleMailMerge.html
http://www.aspose.com/Products/Aspose.Words/Api/ExecuteMailMergewithRegions.html
I hope that this
information will help you.
Best regards.