Aspose.Word Beta Released!http://forums.asp.net/t/384260.aspx/1?Aspose+Word+Beta+Released+Tue, 04 Nov 2003 08:28:20 -0500384260384260http://forums.asp.net/p/384260/384260.aspx/1?Aspose+Word+Beta+Released+Aspose.Word Beta Released! Hello there, Beta version of Aspose.Word has been released. This version allows to read a Word file, perform mail merge operation and save content as a TXT file only. There is no installer, it is just a DLL. You can download it from <a href="http://www.aspose.com/Products/Aspose.Word/Fixes/Aspose.Word.zip">http://www.aspose.com/Products/Aspose.Word/Fixes/Aspose.Word.zip</a>. Please check the <a href="http://www.aspose.com/Products/Aspose.Word/Api/Aspose.Word.html">API Reference</a>. Here is an example how to use the component: Aspose.Word app = new Aspose.Word(); Aspose.Document doc = app.Open(&quot;InputFile.doc&quot;); //This method takes two parameters. //First parameter is an array of string with names of the mail merge fields. //Second parameter is an array of objects with values to be inserted into those fields. doc.MailMerge( new string[] {&quot;FirstName&quot;, &quot;Location&quot;, &quot;TestField1&quot;}, new object[] {&quot;James Bond&quot;, &quot;M5 Headquarters&quot;, &quot;Good day!&quot;}); doc.SaveAs(&quot;OutputFile.txt&quot;); Let me know if you have more questions. In the meantime I will get back to continue work on the component. 2003-11-04T07:39:39-05:00