<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.aspose.com/community/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Aspose.com</title><link>http://www.aspose.com/community/blogs/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60217.2664)</generator><item><title>Aspose.Cells for Java Vs Open Source Competitors</title><link>http://www.aspose.com/community/blogs/aspose.cells/archive/2008/07/05/aspose-cells-for-java-vs-open-source-competitors.aspx</link><pubDate>Fri, 04 Jul 2008 18:43:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:134405</guid><dc:creator>Amjad Sahi</dc:creator><slash:comments>0</slash:comments><description>In this article, we try to examine feature comparison between Aspose.Cells for Java, JExcelAPI and POI-HSSF. Today we find different spreadsheet components that really promise to have feature-rich API for spreadsheet management. The article observes the feature analysis of Aspose.Cells for Java with its open source competitors.


We provide summary of valuable features of all three components. Moreover, we state some known limitations and deficiencies of the components if they have. We also present a comparison table for an overview after putting Aspose.Cells for Java, JExcelAPI and POI-HSSF side by side. 


 
&lt;p&gt;Please check the complete article: &lt;A&gt; http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/aspose-cells-for-java-vs-open-source-competitors.html&lt;/A&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=134405" width="1" height="1"&gt;</description></item><item><title>How to get content of a node or bookmark as HTML, WordML, RTF?</title><link>http://www.aspose.com/community/blogs/aspose.words/archive/2008/07/04/how-to-get-content-of-a-node-or-bookmark-as-html-wordml-rtf.aspx</link><pubDate>Thu, 03 Jul 2008 23:47:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:134268</guid><dc:creator>romank</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;STRONG&gt;How to get content of a node or bookmark as HTML, WordML, RTF?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Many customers of Aspose.Words ask this question, but so far there was no simple one-line-of-code way of doing that in Aspose.Words.&lt;/P&gt;
&lt;P&gt;The general solution we recommended so far was to "extract" the document fragment you are interested in into a separate Document object and then use Document.Save to save it in the desired format. Extracting the fragment might be done either by deleting all content from the document except the fragment you are interested in, or by copying the fragment into an empty Document instance. Because the Document is a tree of nodes, extracting a fragment is not always straightforward and requires a bit of coding with traversing nodes.&lt;/P&gt;
&lt;P&gt;We would like to change that and make it easy for you. The reason we have not yet done this is "complex consequences" that are not immediately apparent to the users who ask for this feature, but are very apparent to us when we try to think of implementing this feature.&lt;/P&gt;
&lt;P&gt;This post is to let you,&amp;nbsp;the user who asks for this feature see the "consequences" of this feature and&amp;nbsp;seek your feedback. Once we decide how to proceed, we will quickly implement extracting HTML, WordML, RTF and any other format from nodes, bookmarks and any other document fragments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where Should the Images Go?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You want to obtain contents of a node or&amp;nbsp;bookmark as an HTML string. All you want to do is:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size=2&gt;string htmlString = doc.Range.Bookmarks["MyBookmark"].ToHtml();&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;It is often forgotten that the fragment could contain images. When a complete document is saved to HTML, the images are written as separate files and the output HTML file references them. &lt;/P&gt;
&lt;P&gt;However, what to do with images when extracting only a fragment of a document as HTML? Should we just ignore the images in this case?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What's an RTF Fragment?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;It is easy to say "I want RTF of that paragraph", but the problem is that any RTF fragment (or WordML or OOXML for that matter) is only valid within the context of a particular document.&lt;/P&gt;
&lt;P&gt;There are several document-wide structures that every fragment will often refer to. For example, an RTF fragment will use \f0 etc keywords to refer to entries in the font table. That is if you don't carry an RTF font table along with that RTF paragraph then the "references" to fonts will be dangling and you will never find out what font is used by text of the RTF fragment.&lt;/P&gt;
&lt;P&gt;This situation is not limited to fonts and RTF, it is much more widespread. Other document-wide structures that are often referenced&amp;nbsp;are styles and list (numbering) and this affects not only RTF, but WordML and OOXML.&lt;/P&gt;
&lt;P&gt;In&amp;nbsp;WordML there is&amp;nbsp;a thing called "context free chunk" that could be used to solve the problem.&amp;nbsp; A context free chunk is basically a "mini document" that includes all the document-wide-structures that are referenced by that particular document fragment. Brian Jones gives a bit of info about context free chunks here &lt;A href="http://blogs.msdn.com/brian_jones/archive/2005/07/20/441167.aspx"&gt;http://blogs.msdn.com/brian_jones/archive/2005/07/20/441167.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;What do you think if we make&amp;nbsp;Node.ToWordML() to return XML in the context free chunk format? I am not so sure about RTF and OOXML though. For RTF we will probably have to return a complete "mini document". For OOXML... no ideas so far.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Jagged Fragments&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;A bookmark in a Word document can start in a paragraph outside of a table, but end inside a table. The document is a tree of nodes and the situation looks something like this:&lt;/P&gt;
&lt;P&gt;&amp;lt;p&amp;gt;&amp;lt;bmkStart name="MyBookmark/&amp;gt;&amp;lt;/p&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;table&amp;gt;&lt;BR&gt;&amp;lt;tr&amp;gt;&lt;BR&gt;&amp;lt;tc&amp;gt;&amp;lt;p&amp;gt;&amp;lt;bmkEnd name="MyBookmark"/&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/tc&amp;gt;&lt;BR&gt;&amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;lt;/table&amp;gt;&lt;/P&gt;
&lt;P&gt;If you want to get content of MyBookmark as HTML or WordML you are looking at several "jagged" nodes. That is start of table, row and cell elements are inside the bookmark, but they end outside of it. How do you want that exported?&lt;/P&gt;
&lt;P&gt;A possible solution is to "snap" up or down until the jagged fragment is closed. It could be possible to snap so the whole table is included in the bookmark or excluded. What do you think?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=134268" width="1" height="1"&gt;</description></item><item><title>Aspose.BarCode for .NET v2.7 with Australia Post Barcode Generation</title><link>http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/07/03/aspose-barcode-for-net-v2-7-with-australia-post-barcode-generation.aspx</link><pubDate>Thu, 03 Jul 2008 06:58:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:134158</guid><dc:creator>iret</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have released Aspose.BarCode for .NET v2.7.0.0. The Austrial Post BarCode generation is supported in this release. The recogintion of Austrial Post BarCode will also support later&lt;/P&gt;
&lt;P&gt;Now we support barcode generation and recognition up to &lt;STRONG&gt;29&lt;/STRONG&gt; different barcode types!&lt;/P&gt;
&lt;P&gt;Download links:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry134154.aspx"&gt;http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry134154.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=134158" width="1" height="1"&gt;</description></item><item><title>Aspose.Editor 3.0.0 Released!</title><link>http://www.aspose.com/community/blogs/aspose.editor/archive/2008/07/03/aspose-editor-3-0-0-released.aspx</link><pubDate>Wed, 02 Jul 2008 11:21:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133985</guid><dc:creator>dmitryb</dc:creator><slash:comments>0</slash:comments><description>&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;This is a major release which includes several new features.&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;A detailed description is here: &lt;A href="http://www.aspose.com/documentation/visual-components/aspose.editor-for-.net/whats-new-in-version-3-0.html"&gt;http://www.aspose.com/documentation/visual-components/aspose.editor-for-.net/whats-new-in-version-3-0.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;o:p&amp;nbsp;&lt; o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;B&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;/SPAN&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;B&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;New Features:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Tables. Many features are supported, including automatic width calculation and nested tables. There is new table properties dialog. User can insert new table, change its structure and properties.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Shading and borders. Now shading and borders are rendered. There is a new dialog for changing shading and borders.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Paragraph rules, e.g. Widow/Orphan control. Paragraph format dialog was updated.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;All section break types, e.g. Even Page, and Column Balancing.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Plug-in modules. Now client editor control can be customized by loading plug-in modules, there is no need to create additional control on the page for this purpose.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Recovery. If control throws application may attempt to recover the document.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Full support for DOCX/DOCM. Documents can now be opened and saved.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;New public methods which use base64 client document stream encoding. This feature simplifies implementing custom send/receive channels in java script on a web page. This is useful if session cookies cannot be passed to the editor in conjunction with forms authentication.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Server control now supports embedding custom control tag on a page. This feature enables wrapping client control with custom user control which simplifies development when editor needs to provide public COM interfaces.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;New Zoom dialog. Also appearance of the UI was improved. Menus now display shortcuts. Style dialog will show tool tips. All fields which are used to enter width or height values will provide units of measure hint, e.g. "pt".&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;B&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;Fixed since 2.3.0:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;252 - Exception if document contains zero height font formatting;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;247 - Drag &amp;amp; drop of hyperlink throws exception;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt 0pt 0pt 36pt; TEXT-INDENT: -18pt; tab-stops: list 36.0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;-&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;All issues on version 2.3.0 reported by customers through support forum;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0pt"&gt;&lt;SPAN lang=EN-US style="mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: navy; LINE-HEIGHT: 150%; FONT-FAMILY: Tahoma; mso-ansi-language: EN-US; mso-bidi-font-weight: normal; mso-fareast-font-family: 'Times New Roman'; mso-fareast-language: RU; mso-bidi-language: AR-SA"&gt;&lt;STRONG&gt;Here is the screenshot of Windows Forms demo application:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/o:p&amp;nbsp;&lt;&gt;&lt;A href="http://www.aspose.com/community/photos/privategallery/AsposeEditorVista.aspx" target=_blank&gt;&lt;IMG src="http://www.aspose.com/community/photos/privategallery/images/133983/500x370.aspx" border=0&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Link to download: &lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.editor/entry133969.aspx"&gt;http://www.aspose.com/community/files/53/visual-components/aspose.editor/entry133969.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133985" width="1" height="1"&gt;</description></item><item><title>Aspose Customer Newsletter, July 2008</title><link>http://www.aspose.com/community/blogs/customer.newsletters/archive/2008/07/01/aspose-customer-newsletter-july-2008.aspx</link><pubDate>Tue, 01 Jul 2008 14:16:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133815</guid><dc:creator>salman.sarfraz</dc:creator><slash:comments>0</slash:comments><description>&lt;TABLE cellSpacing=0 cellPadding=0 width="58%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV class=BlogPostContent&gt;
&lt;TABLE id=table1 height=334 cellSpacing=0 cellPadding=0 width=700&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 01 STARTS HERE --&gt;&lt;SPAN id=add01&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;STRONG&gt;&lt;FONT face=Arial color=#003395 size=4&gt;In This Issue&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;/SPAN&gt;&lt;!-- ADD 01 ENDS HERE --&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 02 STARTS HERE --&gt;&lt;SPAN id=add02&gt;
&lt;UL style="MARGIN-TOP: 10px"&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Welcome!&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Product Spotlight – &lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Improvements in Aspose.Words for Java&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for .NET now supports Patch code and MacroPDF417 recognition&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;S/MIME protocol now supported in Aspose.Network for .NET&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Recognition for .NET 1.0 BETA is now available&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for Reporting Services supports MS Visual Studio and SQL Server 2008&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Migration from VSTO to Aspose – Aspose.Cells&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Technical Article – Outlook Msg File Viewer&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Technical Tip – Convert a Word Document to MHTML and Email&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;/SPAN&gt;&lt;!-- ADD 02 ENDS HERE --&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=700 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1 name=1&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Welcome&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2 height=1&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;Welcome to the July 2008 issue of the Aspose Newsletter! In this month’s newsletter, we will provide some introductory information about our spotlight product: Aspose.Cells for Reporting Services. We will also look at the new and exciting features offered in the recent releases of Aspose.Words, Aspose.BarCode, Aspose.Network and Aspose.Recognition. We will also provide information about migrating your VSTO code to Aspose using Aspose.Cells. You will learn about the latest news from Aspose along with the monthly Tech-Tip, which demonstrates how to convert a Word document to MHTML and Email, and an introduction to our featured technical article which shows you how to create an Outlook Msg file viewer.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=2 name=2&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;SPAN style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Product Spotlight&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=193&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services&lt;/A&gt; allows you to deliver native Excel reports in Microsoft SQL Server 2005 Reporting Services. Unlike the native renderer for Excel based reports, Aspose.Cells for Reporting Services provides an extended feature set and allows RDL reports to be converted to: Excel 97-2003 binary XLS format, SpreadsheetML or the Excel 2007 XLSX format. Take the time to &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;download&lt;/A&gt; the free evaluation version today to see how Aspose.Cells for Reporting Services can work for you.&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;&lt;IMG height=193 src="http://www.aspose.com/Newsletters/08_07/aspose.cell-for-RS-3dbox.jpg" width=145 border=0&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=3 name=3&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Improvements in Aspose.Words for Java&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;DIV align=left&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;The latest version 2.4.2.0 of &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; for Java has been released. In this release, a fix has been provided for the &lt;STRONG&gt;&lt;EM&gt;“Unrecognized format of the form field”&lt;/EM&gt;&lt;/STRONG&gt; exception, which occurred while opening a word document. For more information you can view official &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry128647.aspx"&gt;release page&lt;/A&gt; and the relevant &lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/26/aspose-words-java-2-4-2.aspx"&gt;blog post&lt;/A&gt;. The latest version of Aspose.Words for Java can be downloaded from &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/default.aspx"&gt;here&lt;/A&gt;. We have also updated the Aspose.Words &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/index.html"&gt;documentation&lt;/A&gt;. It now includes all code examples in three languages: C#, VB.NET and Java. The Getting Started and Programmer's Guide sections are updated. They contain &lt;STRONG&gt;over 100 code examples&lt;/STRONG&gt;. For more information, please visit the relevant blog &lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx"&gt;post&lt;/A&gt;.&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;&lt;BR&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.words.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/entry110079.aspx"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=4 name=4&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for .NET now supports Patch code and MacroPDF417 recognition&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=center width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;We have released &lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;Aspose.BarCode&lt;/A&gt; for .NET version 2.6.0.0. In this release we have added support for &lt;STRONG&gt;Patch code&lt;/STRONG&gt; and &lt;STRONG&gt;MacroPDF417&lt;/STRONG&gt; recognition. We have also performed optimized build on &lt;STRONG&gt;.NET framework 3.5&lt;/STRONG&gt;. For detailed information, you are requested to view the official &lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry129164.aspx"&gt;release page&lt;/A&gt; and accompanying &lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/29/aspose-barcode-for-net-v2-6-0-0-released.aspx"&gt;blog post&lt;/A&gt;. The latest version of Aspose.BarCode for .NET can be downloaded from &lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/default.aspx"&gt;here&lt;/A&gt;.&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Products/Aspose.Pdf/"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=5 name=5&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;S/MIME protocol now supported in Aspose.Network for .NET&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table2 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=148&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;The latest version 3.9.0.0 of &lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET has been released. In this release, we have added support for S/MIME protocol. Now, you can add a &lt;STRONG&gt;digital signature&lt;/STRONG&gt; to your email message. The performance of Outlook message file reader has been optimized as well as some improvements have been made to the &lt;STRONG&gt;MIME parser&lt;/STRONG&gt;. This release also contains numerous bug fixes and improvements. For more information, please visit the official &lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/entry129551.aspx"&gt;release page&lt;/A&gt; and the accompanying &lt;A href="http://www.aspose.com/community/blogs/aspose.network/archive/2008/06/02/aspose-network-for-net-v3-9-0-0-released.aspx"&gt;blog post&lt;/A&gt;. The latest version of Aspose.Network for .NET can be downloaded from &lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/default.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width="22%"&gt;&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;&lt;IMG height=119 src="http://www.aspose.com/Newsletters/08_07/aspose.network.jpg" width=114 border=0&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=6 name=6&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Recognition for .NET 1.0 BETA is now available&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table3 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=164&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;We have just released the first Beta version of &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;Aspose.Recognition&lt;/A&gt; for .NET. If you need to &lt;STRONG&gt;convert PDF files to DOC, OOXML, ODT, RTF or HTML&lt;/STRONG&gt; in your application, then you should try Aspose.Recognition. It is a simple to use .NET class library that is available for any .NET version and supports both x86 and x64 modes. Aspose.Recognition employs our market leading document processing library Aspose.Words for producing all document formats. For more information, you are requested to view the official &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/entry132389.aspx"&gt;release page&lt;/A&gt; and the accompanying &lt;A href="http://www.aspose.com/community/blogs/aspose.recognition/archive/2008/06/22/aspose-recognition-1-0-beta-is-now-available.aspx"&gt;blog post&lt;/A&gt;. The latest version of Aspose.Recognition for .NET can be downloaded from &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/category1253.aspx"&gt;here&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;&lt;IMG height=127 src="http://www.aspose.com/Newsletters/08_07/aspose.recognition.jpg" width=138 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=62 name=7&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for Reporting Services supports MS Visual Studio and SQL Server 2008&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table5 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=132&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;A latest version of &lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;Aspose.BarCode for Reporting Services&lt;/A&gt; is just released that now provides the support of both &lt;STRONG&gt;Microsoft Visual Studio 2008&lt;/STRONG&gt; and &lt;STRONG&gt;Microsoft SQL Server 2008&lt;/STRONG&gt;. With this release, Aspose has become the first barcode component vendor that supports MS SQL Server 2008 features. For detailed information, you are requested to view the official &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry132716.aspx"&gt;release page&lt;/A&gt; and accompanying &lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/06/24/aspose-barcode-for-reporting-services-v1-4-0-0-supports-sql-server-2008.aspx"&gt;blog post&lt;/A&gt;. The latest version of Aspose.BarCode for Reporting Services can be downloaded from &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/category1217.aspx"&gt;here&lt;/A&gt;. &lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.rs.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=722 name=8&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;Migration from VSTO to Aspose&lt;/STRONG&gt; – Aspose.Cells&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table4 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;In this month’s newsletter, we include information about migrating your VSTO code to &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.cells-for-.net-and-java/default.aspx"&gt;Aspose.Cells&lt;/A&gt; for adding new worksheets to an existing excel file, filling data into the cells of each worksheet, activating a sheet in the workbook and save as the excel file. You can find the detailed information with complete code &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;here&lt;/A&gt;.&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/vsto-to-aspose.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1022 name=9&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;Technical Article&lt;/STRONG&gt; – Outlook Msg File Viewer&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table7 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;IIn this article, we will show you how to parse an Outlook Msg file in your C# application. We will use &lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET for this purpose. We have developed a complete Outlook Msg file viewer. We provide step by step instructions on how you can achieve the same. The complete source code of the demo application is also provided for your convenience. You can find the complete article &lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;here&lt;/A&gt;.&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-article.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=10 name=10&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;Technical Tip&lt;/STRONG&gt; –&lt;STRONG&gt;&lt;EM&gt;– &lt;/EM&gt;&lt;/STRONG&gt;Convert a Word Document to MHTML and Email&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=546&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;Starting with Aspose.Words for .NET version 5.2.0.0, it is now possible to save any document in MHTML (Web Archive) format. It makes it very easy to use &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; and &lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; together to generate email messages with rich content and send them. This technical tip shows you how to do just that. The complete technical tip can be found &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;here&lt;/A&gt;.&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width=154&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-tip.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133815" width="1" height="1"&gt;</description></item><item><title>Aspose 2008年7月お客様へのメールマガジン</title><link>http://www.aspose.com/community/blogs/aspose.japan/archive/2008/07/01/aspose-2008-7.aspx</link><pubDate>Tue, 01 Jul 2008 14:13:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133814</guid><dc:creator>salman.sarfraz</dc:creator><slash:comments>0</slash:comments><description>&lt;TABLE cellSpacing=0 cellPadding=0 width="58%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV class=BlogPostContent&gt;
&lt;TABLE id=table1 height=334 cellSpacing=0 cellPadding=0 width=700&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 01 STARTS HERE --&gt;&lt;SPAN id=add01&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;STRONG&gt;&lt;FONT face=Arial color=#003395 size=4&gt;In This Issue&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;/SPAN&gt;&lt;!-- ADD 01 ENDS HERE --&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 02 STARTS HERE --&gt;&lt;SPAN id=add02&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;ウェルカム!&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;製品スポットライト – &lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Words for Java の改良&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for .NET で Patch コードと MacroPDF417 認識のサポート&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Network for .NET で S/MIME プロトコルをサポート&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Recognition for .NET 1.0 BETA 提供開始&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for Reporting Services で MS Visual Studio 2008 と SQL Server 2008 をサポート&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;VSTO から Aspose への移植 – Aspose.Cells&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Technical Article – Outlook Msg File Viewer&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Technical Tip – Word ドキュメントを MHTML と Email へ変換&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;/SPAN&gt;&lt;!-- ADD 02 ENDS HERE --&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=700 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1 name=1&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;ウェルカム&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2 height=1&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;Aspose Newsletter 2008年 7月号をご覧頂き、誠に有難うございます。今月のニュースレターでは、スポットライト製品として Aspose.Cells for Reporting Services 製品を紹介します。また、Aspose.Words、Aspose.BarCode、Aspose.Network および Aspose.Recognition の最新リリースで提供する新機能を紹介します。 Aspose.Cells を使用した VSTO コードを Aspose への移植に関する情報をご案内します。今月の Tech-Tip では、Aspose の最新ニュースとして、Word ドキュメントを MHTML と Email へ変換する方法を紹介します。また、Technical Article では、Outlook Msg file viewer の作成方法を紹介します。&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=2 name=2&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;SPAN style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;製品スポットライト&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=193&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services&lt;/A&gt; は、Microsoft SQL Server 2005 Reporting Services のネイティブな Excel レポートの配布を可能とします。 Excel ベースのレポートのネイティブなレンダーとは異なり、Aspose.Cells for Reporting Services は、 RDL レポートを Excel 97-2003 バイナリ XLS フォーマット、SpreadsheetML または Excel2007 XLSX フォーマットへ変換する拡張機能セットを提供します。評価版を&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;ダウンロード&lt;/A&gt;し、是非 Aspose.Cells for Reporting Services の機能をお試しください。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;&lt;IMG height=193 src="http://www.aspose.com/Newsletters/08_07/aspose.cell-for-RS-3dbox.jpg" width=145 border=0&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=3 name=3&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Words for Java の改良&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;DIV align=left&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; for Java の最新バージョン 2.4.2.0 がリリースされました。本リリースでは、Word ドキュメントを開く際に発生する &lt;STRONG&gt;&lt;EM&gt;“Unrecognized format of the form field”&lt;/EM&gt;&lt;/STRONG&gt; 例外エラーを修正しました。詳細は、公式&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry128647.aspx"&gt;リリース ページ&lt;/A&gt;と関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/26/aspose-words-java-2-4-2.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。Aspose.Words for Java の最新バージョンは、&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/default.aspx"&gt;ここ&lt;/A&gt;からダウンロード可能です。Aspose.Words の&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/index.html"&gt;ドキュメント&lt;/A&gt;も更新しました。C#、VB.NET および Java の 3 つの言語のコード例が含まれます。The Getting Started and Programmer's Guide セクションを更新しました。&lt;STRONG&gt;100 以上のコード例code examples&lt;/STRONG&gt; が含まれます。詳細は、関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;&lt;BR&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.words.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/entry110079.aspx"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=4 name=4&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for .NET で Patch コードと MacroPDF417 認識のサポート&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=center width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;Aspose.BarCode&lt;/A&gt; for .NET version 2.6.0.0 がリリースされました。本リリースでは、&lt;STRONG&gt;Patch コード&lt;/STRONG&gt;と &lt;STRONG&gt;MacroPDF417&lt;/STRONG&gt; 認識のサポートが追加されました。また、&lt;STRONG&gt;.NET framework 3.5&lt;/STRONG&gt; でのビルドの最適化を行いました。詳細は、公式&lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry129164.aspx"&gt;リリース ページ&lt;/A&gt;と関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/29/aspose-barcode-for-net-v2-6-0-0-released.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。Aspose.BarCode for .NET の最新バージョンは、&lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/default.aspx"&gt;ここ&lt;/A&gt;からダウンロード可能です。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Products/Aspose.Pdf/"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=5 name=5&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Network for .NET で S/MIME プロトコルをサポート&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table2 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=148&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET の最新バージョン 3.9.0.0 がリリースされました。本リリースでは、S/MIME プロトコルのサポートを追加しました。これで、Emai メッセージに&lt;STRONG&gt;デジタル署名&lt;/STRONG&gt;を追加できます。&lt;STRONG&gt;MIME パーサー&lt;/STRONG&gt;へ改良と同様に、Outlook メッセージ ファイル リーダーのパフォーマンスを最適化しました。本リリースではまた、多くのバグの修正と改良が含まれます。詳細は、公式&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/entry129551.aspx"&gt;リリース ページ&lt;/A&gt;と関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.network/archive/2008/06/02/aspose-network-for-net-v3-9-0-0-released.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。Aspose.Network for .NET の最新バージョンは、&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/default.aspx"&gt;ここ&lt;/A&gt;からダウンロード可能です。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width="22%"&gt;&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;&lt;IMG height=119 src="http://www.aspose.com/Newsletters/08_07/aspose.network.jpg" width=114 border=0&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=6 name=6&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Recognition for .NET 1.0 BETA 提供開始&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table3 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=164&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;Aspose.Recognition&lt;/A&gt; for .NET の初期ベータ版を提供開始しました。アプリケーションで、&lt;STRONG&gt;PDF ファイルを DOC、OOXML、ODT、RTF または HTML&lt;/STRONG&gt; へ変換する場合、是非 Aspose.Recognition をお試しください。.NET class library の使い方は簡単で、どの .NET バージョンでも利用可能で、x86 と x64 モードの両方をサポートします。Aspose.Recognition は、Aspose 社の主要なドキュメント処理ライブラリ Aspose.Words を使用して、すべてのドキュメント フォーマットを処理します。詳細は、公式&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/entry132389.aspx"&gt;リリース ページ&lt;/A&gt;と関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.recognition/archive/2008/06/22/aspose-recognition-1-0-beta-is-now-available.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。Aspose.Recognition for .NET のベータ版は、&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/category1253.aspx"&gt;ここ&lt;/A&gt;からダウンロード可能です。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;&lt;IMG height=127 src="http://www.aspose.com/Newsletters/08_07/aspose.recognition.jpg" width=138 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=62 name=7&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for Reporting Services で MS Visual Studio 2008 と SQL Server 2008 をサポート&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table5 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=132&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;Aspose.BarCode for Reporting Services&lt;/A&gt; の最新バージョンがリリースされ、これで &lt;STRONG&gt;Microsoft Visual Studio 2008&lt;/STRONG&gt; と &lt;STRONG&gt;Microsoft SQL Server 2008&lt;/STRONG&gt; の両方のサポートを提供します。本リリースでは、Aspose 社は、他のバーコード コンポーネント ベンダーに先駆け、MS SQL Server 2008 機能をサポートします。詳細は、公式&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry132716.aspx"&gt;リリース ページ&lt;/A&gt;と関連する&lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/06/24/aspose-barcode-for-reporting-services-v1-4-0-0-supports-sql-server-2008.aspx"&gt;ブログ ポスト&lt;/A&gt;を参照してください。Aspose.BarCode for Reporting Services の最新バージョンは、&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/category1217.aspx"&gt;ここ&lt;/A&gt;からダウンロード可能です。 &lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.rs.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=722 name=8&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;VSTO から Aspose への移植&lt;/STRONG&gt; – Aspose.Cells&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table4 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;今月のニュースレターでは、VSTO コードを &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.cells-for-.net-and-java/default.aspx"&gt;Aspose.Cells&lt;/A&gt; へ移植する方法を紹介し、新しいワークシートを既存の Excel ファイルへ追加、各ワークシートのセルへデータを入力、ワークブックのシートをアクティブにし、Excel ファイルとして保存します。記事の全文は、&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;こちら&lt;/A&gt;からご覧ください。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/vsto-to-aspose.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1022 name=9&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;Technical Article&lt;/STRONG&gt; – Outlook Msg File Viewer&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table7 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;本記事では、C# アプリケーションで Outlook Msg ファイルをパースする方法を紹介します。この実装には、&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET を使用します。Outlook Msg file viewer を開発しました。ステップ バイ ステップで開発手順を紹介します。デモ アプリケーションのソース コードも提供してるので、ご参考ください。記事の全文は、&lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;こちら&lt;/A&gt;からご覧ください。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-article.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=10 name=10&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;Technical Tip&lt;/STRONG&gt; –&lt;STRONG&gt;&lt;EM&gt;– &lt;/EM&gt;&lt;/STRONG&gt;Word ドキュメントを MHTML と Email へ変換&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=546&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;Aspose.Words for .NET version 5.2.0.0 以降、MHTML (Web Archive) フォーマットでどのドキュメントも保存することができます。これによって、&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; と&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt; Aspose.Network&lt;/A&gt; を一緒に使用して、リッチ コンテンツを持つ Email メッセージを作成し、送信するのが非常に簡単になりました。本 Technical Tip では、この方法を紹介します。記事の全文は、&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;こちら&lt;/A&gt;からご覧ください。&lt;BR&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;本ニュースの日本語訳は、&lt;A href="http://www.xlsoft.com/jp"&gt;エクセルソフト株式会社&lt;/A&gt;が提供しています。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width=154&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-tip.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133814" width="1" height="1"&gt;</description></item><item><title>Aspose 顾客时事通讯, 2008 年7月 </title><link>http://www.aspose.com/community/blogs/aspose.china/archive/2008/07/01/aspose-2008-7.aspx</link><pubDate>Tue, 01 Jul 2008 13:52:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133805</guid><dc:creator>salman.sarfraz</dc:creator><slash:comments>0</slash:comments><description>&lt;TABLE cellSpacing=0 cellPadding=0 width="58%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV class=BlogPostContent&gt;
&lt;TABLE id=table1 height=334 cellSpacing=0 cellPadding=0 width=700&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 01 STARTS HERE --&gt;&lt;SPAN id=add01&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;STRONG&gt;&lt;FONT face=Arial color=#003395 size=4&gt;In This Issue&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;/SPAN&gt;&lt;!-- ADD 01 ENDS HERE --&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;!-- ADD 02 STARTS HERE --&gt;&lt;SPAN id=add02&gt;
&lt;UL style="MARGIN-TOP: 10px"&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;欢迎!&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;产品聚光灯 – &lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Words for Java的改进&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for .NET 目前可识别Patch编码和 MacroPDF417&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Network for .NET目前支持S/MIME协议&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.Recognition for .NET 1.0测试版可用&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;Aspose.BarCode for Reporting Services 支持 MS Visual Studio and SQL Server 2008&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;从VSTO移植到Aspose – Aspose.Cells&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;技术文档 – Outlook Msg 文件浏览器&lt;/FONT&gt;&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT face="Arial, Helvetica, sans-serif" color=#000000 size=2&gt;技术小技巧 – 转换Word文档到MHTML和Email&lt;/FONT&gt;&lt;/STRONG&gt; &lt;/LI&gt;&lt;/UL&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=700 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1 name=1&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;欢迎&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2 height=1&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;欢迎阅读Aspose2008年7月份月度快报！在本期快报中我们将对我们的亮点产品Aspose.Cells for Reporting Services做出相关介绍。还将对新近发布的产品Aspose.Words, Aspose.BarCode, Aspose.Network以及Aspose.Recognition的新功能以及已有功能做出相关介绍。我们还将讲解如何使用Aspose.Cell将VSTO代码移植到Aspose。通过本月的技术小贴士，您将了解到来自Aspose的最新技术信息——如何转换Word文档为MHTML和Email。在我们的技术文章中还将介绍如何创建一个Outlook Msg文件浏览器。&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=2 name=2&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;SPAN style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;产品聚光灯&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=193&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.cells-for-reporting-services/default.aspx"&gt;Aspose.Cells for Reporting Services &lt;/A&gt;允许您在Microsoft SQL Server 2005 Reporting Services中发布本地Excel报表。不同于Excel本地基本报表，Aspose.Cells for Reporting Services提供了额外的功能设置并允许 RDL报表转换为：Excel 97-2003 二进制XLS 格式、 SpreadsheetML 或 Excel 2007 XLSX 格式。 现在就 &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;下载&lt;/A&gt;Aspose.Cells for Reporting Services的免费试用版并看看其是否满足您的业务需求吧。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.cells.reporting.services/default.aspx"&gt;&lt;IMG height=193 src="http://www.aspose.com/Newsletters/08_07/aspose.cell-for-RS-3dbox.jpg" width=145 border=0&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=3 name=3&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Words for Java 改进&lt;/FONT&gt;&lt;SPAN class=STYLE1&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2&gt;
&lt;DIV align=left&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; for Java的最新版本2.4.2.0已发布。新版本中，在打开word&lt;/P&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;文档时出现的"不可识别的表单域格式"异常已得到修复。更多信息您可用浏览官方&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry128647.aspx"&gt;发布网页&lt;/A&gt; 和相关的 &lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/26/aspose-words-java-2-4-2.aspx"&gt;博客文章&lt;/A&gt;. Aspose.Words for Java 的最新版本可在&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/default.aspx"&gt;这里&lt;/A&gt;下载。 我们已更新了Aspose.Words&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/index.html"&gt;文章&lt;/A&gt;。包含了三种语言的代码示例：C#, VB.NET 和 Java。"开始指导" 和程序员指南部分也已更新。包含了&lt;STRONG&gt;100多个示例代码。&lt;/STRONG&gt; 更多信息请浏览相关&lt;A href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx"&gt;博客文章&lt;/A&gt;。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;&lt;BR&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.words.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/entry110079.aspx"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=4 name=4&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for .NET可识别 Patch 编码和 MacroPDF417&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=center width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;我们已发布了&lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;Aspose.BarCode&lt;/A&gt; for .NET版本 2.6.0.0. 该版本中我们增加了对 &lt;STRONG&gt;Patch 编码&lt;/STRONG&gt; 和 &lt;STRONG&gt;MacroPDF417&lt;/STRONG&gt; 的识别。我们还完成了在&lt;STRONG&gt;.NET framework 3.5&lt;/STRONG&gt;.下的优化。更多信息可浏览 &lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry129164.aspx"&gt;官方发布网页&lt;/A&gt; 以及相关的 &lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/29/aspose-barcode-for-net-v2-6-0-0-released.aspx"&gt;博客文章&lt;/A&gt;。Aspose.BarCode for .NET的最新版本可在 &lt;A href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/default.aspx"&gt;这里&lt;/A&gt;下载。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Products/Aspose.Pdf/"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=5 name=5&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Network for .NET 目前支持 S/MIME 协议&lt;/FONT&gt;&lt;SPAN class=STYLE1&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table2 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=148&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET 的最新版本3.9.0.0已发布。该版本支持S/MIME协议。目前您可以添加数字签名到您的email里。由于&lt;STRONG&gt;MIME parser&lt;/STRONG&gt;得到改进从而Outlook message文件阅读器的性能也得到了优化。还包括了其他一些改进和bug的修复。更多信息请访问官方&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/entry129551.aspx"&gt;发布网页&lt;/A&gt;和相关的&lt;A href="http://www.aspose.com/community/blogs/aspose.network/archive/2008/06/02/aspose-network-for-net-v3-9-0-0-released.aspx"&gt;博客文章&lt;/A&gt;。Aspose.Network for .NET的最新版本可在&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/default.aspx"&gt;这里&lt;/A&gt;下载。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width="22%"&gt;&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;&lt;IMG height=119 src="http://www.aspose.com/Newsletters/08_07/aspose.network.jpg" width=114 border=0&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=6 name=6&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.Recognition for .NET 1.0 测试版可用&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table3 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=164&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;我们刚刚发布了&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;Aspose.Recognition&lt;/A&gt; for .NET的第一个测试版。如果您需要在程序中转换PDF文件为&lt;STRONG&gt;DOC, OOXML, ODT, RTF 或者 HTML&lt;/STRONG&gt; ，您可以试试 Aspose.Recognition.。它是适用于任何.Net版本的.Net类库并支持x86和x64 模式。Aspose.Recognition使用了我们的领军的文档处理产品Aspose.Words来处理所有的文档格式。更多信息可访问 &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/entry132389.aspx"&gt;官方发布网页&lt;/A&gt; 以及相关的 &lt;A href="http://www.aspose.com/community/blogs/aspose.recognition/archive/2008/06/22/aspose-recognition-1-0-beta-is-now-available.aspx"&gt;博客文章&lt;/A&gt;。Aspose.Recognition for .NET 的最新版本可在这里 &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.recognition/category1253.aspx"&gt;下载 &lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;&lt;IMG height=127 src="http://www.aspose.com/Newsletters/08_07/aspose.recognition.jpg" width=138 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=62 name=7&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;Aspose.BarCode for Reporting Services 支持 MS Visual Studio and SQL Server 2008&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table5 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=132&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;Aspose.BarCode for Reporting Services&lt;/A&gt;的最新版本已发布，其支持&lt;STRONG&gt;Microsoft Visual Studio 2008&lt;/STRONG&gt; 和 &lt;STRONG&gt;Microsoft SQL Server 2008&lt;/STRONG&gt;。该版本中，Aspose是第一个销售支持MS SQL Server 2008 功能条码组件的公司。更多详细信息您可访问&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry132716.aspx"&gt;官方发布网页&lt;/A&gt; 和 相关的 &lt;A href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/06/24/aspose-barcode-for-reporting-services-v1-4-0-0-supports-sql-server-2008.aspx"&gt;博客文章&lt;/A&gt; 。Aspose.BarCode for Reporting Services 的最新版本可在 &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/category1217.aspx"&gt;这里&lt;/A&gt;下载。&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose.barcode.rs.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=722 name=8&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;从 VSTO 移植到 Aspose&lt;/STRONG&gt; – Aspose.Cells&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table4 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;本月月报中，我们将介绍如何将您的VSTO代码移植到&lt;A href="http://www.aspose.com/categories/file-format-components/aspose.cells-for-.net-and-java/default.aspx"&gt;Aspose.Cells&lt;/A&gt;从而可为已有excel文件添加新的工作薄，为工作薄中的每个单元格填充数据，激活工作薄以及保存excel文件。您可以在&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;here&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/adding-new-worksheets-to-workbook-and-activating-a-sheet.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/vsto-to-aspose.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=1022 name=9&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;技术文章&lt;/STRONG&gt; – Outlook Msg文件浏览器&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;TABLE id=table7 cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="78%" height=120&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;本文中，我们将为您演示如何在C#程序中解析Outlook Msg文件。我们会用到&lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; for .NET。我们已开发了一个完善的Outlook Msg文件浏览器。我们将一步一步交您如何实现。为了您的方便，我们会提供完整的Demo和源码。点击 &lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;这里&lt;/A&gt;此处浏览完整的文章。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top width="22%"&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-article.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;A id=10 name=10&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;
&lt;P style="MARGIN-LEFT: 20px"&gt;&lt;FONT face=Arial color=#003395 size=4&gt;&lt;STRONG&gt;技术小技巧&lt;/STRONG&gt;–转换 Word Document为MHTML和Email&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colSpan=2&gt;&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=546&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;使用Aspose.Words for .NET版本5.2.0.0，它可将任何文档保存为MHTML (Web 存档) 格式。 使用 &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx"&gt;Aspose.Words&lt;/A&gt; 和 &lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;Aspose.Network&lt;/A&gt; 可轻易地生成带有丰富内容的邮件并发送它们。该技术贴士会告诉您如何实现。点击 &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;此处&lt;/A&gt;获取完整的技术贴士。&lt;BR&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD vAlign=top align=middle width=154&gt;
&lt;DIV align=center&gt;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/convert-a-word-document-to-mhtml-and-email.html"&gt;&lt;IMG height=120 src="http://www.aspose.com/Newsletters/08_07/aspose-technical-tip.jpg" width=107 border=0&gt;&lt;/A&gt;&lt;A href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133805" width="1" height="1"&gt;</description></item><item><title>Aspose.Pdf for .Net 3.7.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.pdf/archive/2008/07/01/aspose-pdf-for-net-3-7-0-0-released.aspx</link><pubDate>Tue, 01 Jul 2008 01:38:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133742</guid><dc:creator>forever</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have not published new release of this product for half a year. During this time, we pay our main attention on improving the quality of the product. In this new release, the quality is greatly improved and many bugs are fixed.&lt;/P&gt;
&lt;P&gt;Some New features are added in this release. Bookmark at specific points is supported. Custom action for bookmark and link is supported. In XSL-FO2PDF, EMF and WMF image is supported. Security setting is also supported in XSL-FO2PDF.&lt;/P&gt;
&lt;P&gt;Download URL:&lt;BR&gt;&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.pdf/default.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.pdf/default.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133742" width="1" height="1"&gt;</description></item><item><title>Aspose.Workflow for .NET v1.5 Released</title><link>http://www.aspose.com/community/blogs/aspose.workflow/archive/2008/06/30/aspose-workflow-for-net-v1-5-released.aspx</link><pubDate>Mon, 30 Jun 2008 10:04:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133615</guid><dc:creator>iret</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We just released Aspose.Workflow for .NET v1.5.0.0. In this release, we supports Oracle Data Provider for .NET. &lt;/P&gt;
&lt;P&gt;&lt;SPAN class=bodycopy&gt;The Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database. Aspose.Workflow for ODP.NET allows developers to take advantage of advanced Oracle database functionality. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=bodycopy&gt;Here is download page:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=bodycopy&gt;&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.workflow/entry133561.aspx"&gt;http://www.aspose.com/community/files/54/utility-components/aspose.workflow/entry133561.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133615" width="1" height="1"&gt;</description></item><item><title>Aspose.Cells 4.5.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.cells/archive/2008/06/30/aspose-cells-4-5-0-0-released.aspx</link><pubDate>Mon, 30 Jun 2008 00:54:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:133557</guid><dc:creator>Laurence</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have just released Aspose.Cells v4.5.0.0: &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.cells/category1084.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.cells/category1084.aspx&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;In these new release, we not only add new features as usual, but also shape it's performance. Aspose.Cells aims to&amp;nbsp;provide richest feature set and highest compatibility for different Excel files. In the mean time, performance is a very critical issue for our product. We make many performance testing and enhancement in v4.5.&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=133557" width="1" height="1"&gt;</description></item><item><title>Aspose.Slides for JasperReports 1.0.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.slides/archive/2008/06/25/aspose-slides-for-jasperreports-1-0-0-0-released.aspx</link><pubDate>Wed, 25 Jun 2008 10:49:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132970</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Please welcome our new product Aspose.Slides for JasperReports!&lt;/p&gt;
&lt;p&gt;Aspose.Slides for JasperReports is an external exporter for
JasperReports and the only known solution on the market that makes
possible exporting reports from JasperReports to Microsoft PowerPoint
PPT and PPS formats.&lt;/p&gt;The Zip file contains Aspose.Slides.JasperReports.jar, instructions how to configure it and API reference.&lt;br&gt;&lt;br&gt;Licenses for purchase will be available in next few days. Without license exporter will produce presentations with watermark.&lt;br&gt;&lt;br&gt;Contact us in the &lt;a href="http://www.aspose.com/community/forums/aspose.slides-for-.net-java-reporting-services-and-jasperreports/109/showforum.aspx"&gt;Aspose.Slides forum&lt;/a&gt; with any technical questions and requests.&lt;br&gt;&lt;br&gt;Pleasse check &lt;a href="http://www.aspose.com/community/files/67/jasperreports-exporters/aspose.slides.jasperreports/default.aspx"&gt;download link&lt;/a&gt;.&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132970" width="1" height="1"&gt;</description></item><item><title>Aspose.BarCode for Reporting Services v1.4.0.0 Supports SQL Server 2008</title><link>http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/06/24/aspose-barcode-for-reporting-services-v1-4-0-0-supports-sql-server-2008.aspx</link><pubDate>Tue, 24 Jun 2008 10:18:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132742</guid><dc:creator>iret</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have just released Aspose.BarCode for Reporting Services v1.4.0.0. &lt;/P&gt;
&lt;P&gt;Microsoft SQL Server 2008 and Visual Studio 2008&amp;nbsp;are supported in this release. We are the first barcode component vender that&amp;nbsp;supports the Sql Server 2008 features. &lt;/P&gt;
&lt;P&gt;Here is the download link:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry132716.aspx"&gt;http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry132716.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132742" width="1" height="1"&gt;</description></item><item><title>Aspose.Form for .NET v1.3.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.form/archive/2008/06/24/aspose-form-for-net-v1-3-0-0-released.aspx</link><pubDate>Tue, 24 Jun 2008 09:43:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132732</guid><dc:creator>iret</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have releaed Aspose.Form for .NET v1.3.0.0.&lt;/P&gt;
&lt;P&gt;In this release, we improved the UI for repeating elements for example repeating section, repeating table, and repeating row. A contextual menu is added to these element to provide insert/remove functions. &lt;/P&gt;
&lt;P&gt;Moreover, we also rewrited the rendering engine to support Master Page in ASP.NET and User Control. &lt;/P&gt;
&lt;P&gt;In order to upgrad to the v1.3.0.0, you need to follow the steps:&lt;/P&gt;
&lt;P&gt;1. Use Aspose.Form.Web.UI.WebControls.XmlFormViewer to replace the FormControl&lt;/P&gt;
&lt;P&gt;2. add httpmodule to your web config as following&lt;/P&gt;
&lt;P&gt;&amp;lt;httpModules&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add name="CustomModule" type="Aspose.Form.Web.UI.WebControls.Custom.CustomHttpModule, Aspose.Form"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/httpModules&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;xhtmlConformance mode="Legacy"/&amp;gt;&amp;lt;/system.web&amp;gt;&lt;BR&gt;&amp;lt;/configuration&amp;gt;&lt;/P&gt;
&lt;P&gt;Download Page:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.form/entry132679.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.form/entry132679.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132732" width="1" height="1"&gt;</description></item><item><title>Aspose.Recognition 1.0 BETA is Now Available!</title><link>http://www.aspose.com/community/blogs/aspose.recognition/archive/2008/06/22/aspose-recognition-1-0-beta-is-now-available.aspx</link><pubDate>Sat, 21 Jun 2008 19:35:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132404</guid><dc:creator>romank</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;If you need to convert PDF files to DOC, OOXML, ODT, RTF or HTML in your application, then you should try Aspose.Recognition. It is a simple to use .NET class library that is available for any .NET version and supports both x86 and x64 modes.&lt;/P&gt;
&lt;P&gt;See the product homepage for more info &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P style="text-align:left"&gt;And yes, it is BETA. So feel free to post feedback and feature requests in the support forum &lt;A href="http://www.aspose.com/community/forums/aspose.recognition/441/showforum.aspx"&gt;http://www.aspose.com/community/forums/aspose.recognition/441/showforum.aspx&lt;/A&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132404" width="1" height="1"&gt;</description></item><item><title>Eating one's own dog food again!</title><link>http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/22/eating-one-s-own-dog-food-again.aspx</link><pubDate>Sat, 21 Jun 2008 09:44:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132406</guid><dc:creator>romank</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Aspose.Words for .NET is the dog food again and we are eating it in our new product &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;Aspose.Recognition for .NET&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Aspose.Recognition is a fresh new product from Aspose&amp;nbsp;and it is touted to later grow into a powerful "fixed-layout" to "flow-layout" document converter.&amp;nbsp;At the moment it is only a 1.0 BETA and can convert PDF to all output formats supported by Aspose.Words for .NET such as DOC, OOXML, RTF, ODT and HTML. Future features planned are OCR document recognition and output to more&amp;nbsp;document formats.&lt;/P&gt;
&lt;P&gt;When you download and use Aspose.Recognition, no other software is necessary.&amp;nbsp; Downloading Aspose.Words separately is&amp;nbsp;not needed because in this version Aspose.Recognition embeds a document generation engine of Aspose.Words (although this might later change if more Office output formats are supported with help of other Aspose components).&lt;/P&gt;
&lt;P&gt;Other places where Aspose.Words is used at Aspose:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.editor-for-.net/default.aspx"&gt;Aspose.Editor for .NET &lt;/A&gt;to open and save documents.&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;Aspose.Words for Reporting Services &lt;/A&gt;to generate reports.&lt;/LI&gt;
&lt;LI&gt;Aspose.Words for JasperReports (coming soon).&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/documentation/default.aspx"&gt;Generation of Aspose&amp;nbsp;Documentation pages&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;If you need PDF to word processing documents conversion in your project, give Aspose.Recognition a try and share your experience with us in the support forums. Your feedback is greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132406" width="1" height="1"&gt;</description></item><item><title>Need a difference tool that can find moved lines. Do you know any?</title><link>http://www.aspose.com/community/blogs/roman.korchagin/archive/2008/06/20/need-a-difference-tool-that-can-find-moved-lines-do-you-know-any.aspx</link><pubDate>Fri, 20 Jun 2008 07:45:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:132242</guid><dc:creator>romank</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;There are heaps of&amp;nbsp;commercial and free difference tools available. Only few of them can find moved blocks of lines. At the moment I'm only aware of&amp;nbsp;WinDiff, WinMerge and Compare It. However I need to be able to "jump" between move source and destination and only Compare It allows it. I also need to generate a report that distinguishes moved lines from simple insertions or deletions. None of the tools do that. Is that a very weird requirement?&lt;/P&gt;
&lt;P&gt;If you know a good tool that can reliably find moved lines and generate a report let me know, it will be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132242" width="1" height="1"&gt;</description></item><item><title>Aspose.Recognition 1.0 BETA is coming soon!</title><link>http://www.aspose.com/community/blogs/aspose.recognition/archive/2008/06/17/aspose-recognition-free-beta-is-coming-soon.aspx</link><pubDate>Mon, 16 Jun 2008 23:21:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:131482</guid><dc:creator>romank</dc:creator><slash:comments>2</slash:comments><description>&lt;P&gt;Watch this space, we will make Aspose.Recogntion 1.0 BETA&amp;nbsp;available in the next few days.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=131482" width="1" height="1"&gt;</description></item><item><title>Outlook Message (.msg) File Viewer</title><link>http://www.aspose.com/community/blogs/aspose.network/archive/2008/06/12/outlook-message-msg-file-viewer.aspx</link><pubDate>Thu, 12 Jun 2008 17:18:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:131142</guid><dc:creator>saqib.razzaq</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;We have added a new demo and an article for parsing and reading outlook message (.msg) files. You can now read outlook msg files using your own code. Microsoft Office Outlook is not required for it. A screenshot of the demo is shown below:&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/photos/privategallery/images/original/msgMain.aspx" target=_blank&gt;&lt;IMG src="http://www.aspose.com/community/photos/privategallery/images/original/msgMain.aspx" border=0&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana"&gt;The demo can be downloaded from &lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/entry130065.aspx"&gt;http://www.aspose.com/community/files/54/utility-components/aspose.network/entry130065.aspx&lt;/A&gt;. To read the article about how to implement it in your own application, please visit &lt;SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;&lt;A href="http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html"&gt;http://www.aspose.com/documentation/utility-components/aspose.network-for-.net/outlook-msg-file-viewer.html&lt;/A&gt;. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana"&gt;The trial version of library can be downloaded from &lt;A href="http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx"&gt;http://www.aspose.com/categories/utility-components/aspose.network-for-.net/default.aspx&lt;/A&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=131142" width="1" height="1"&gt;</description></item><item><title>Aspose.Words Documentation Updated with Java Examples</title><link>http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx</link><pubDate>Mon, 09 Jun 2008 12:04:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:130528</guid><dc:creator>romank</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;I am happy to announce that &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/index.html"&gt;Aspose.Words Documentation&lt;/A&gt; was updated. It now&amp;nbsp;includes all code examples in three languages: C#, VB.NET and Java!&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;Getting Started and Programmer's Guide sections were updated. They contain over 100 code examples. See &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/the-mergeimagefield-event.html"&gt;http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/the-mergeimagefield-event.html&lt;/A&gt;&amp;nbsp;for an example.&lt;/P&gt;
&lt;P&gt;The Aspose.Words API Reference had all examples in C#, VB.NET and Java already.&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=130528" width="1" height="1"&gt;</description></item><item><title>Aspose.Network for .NET v3.9.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.network/archive/2008/06/02/aspose-network-for-net-v3-9-0-0-released.aspx</link><pubDate>Mon, 02 Jun 2008 09:16:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:129569</guid><dc:creator>iret</dc:creator><slash:comments>1</slash:comments><description>&lt;P&gt;Aspose.Network for .NET v3.9.0.0 has released.&lt;/P&gt;
&lt;P&gt;In this major release, we supported S/MIME protocol features. Now you can add a digital signature to your email message. &lt;/P&gt;
&lt;P&gt;Here is the sample code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;// load the certificate and associated private key from a file&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X509Certificate2 certificate = X509Certificate2.LoadPfx("mycer.pfx", "password");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // create an instance of MailMessage&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MailMessage message = new MailMessage();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set its properties to desired values&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message.From = "&lt;A href="mailto:sender@domain.com"&gt;sender@domain.com&lt;/A&gt;";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message.To = &lt;A href="mailto:recipient@domain.com"&gt;recipient&lt;A href="mailto:recipient@example.com"&gt;@domain.com&lt;/A&gt;&lt;/A&gt;&lt;/A&gt;;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message.Subject = "This is a signed message";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message.TextBody = "Hello, world!";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // attach a digital signature&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; message.AttachSignature(certificate);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SmtpClient.Send(message);&lt;/P&gt;
&lt;P&gt;Download Link:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/54/utility-components/aspose.network/entry129551.aspx"&gt;http://www.aspose.com/community/files/54/utility-components/aspose.network/entry129551.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=129569" width="1" height="1"&gt;</description></item><item><title>Aspose Customer Newsletter, June 2008</title><link>http://www.aspose.com/community/blogs/customer.newsletters/archive/2008/06/01/aspose-customer-newsletter-june-2008.aspx</link><pubDate>Sun, 01 Jun 2008 08:52:05 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:129506</guid><dc:creator>salman.sarfraz</dc:creator><slash:comments>0</slash:comments><description>&lt;!-- saved from url=(0022)http://internet.e-mail --&gt;
&lt;TABLE width="58%" border=0 cellPadding=0 cellSpacing=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="700"&gt;
&lt;DIV class=BlogPostContent&gt;
&lt;TABLE width="700" height="302" cellPadding=0 cellSpacing=0 id=table1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD id="remove_height"  valign="bottom"&gt;

&lt;!-- ADD 01 STARTS HERE --&gt;
&lt;span id="add01"&gt;&lt;P style="margin-left:20px;"&gt;
&lt;strong&gt;&lt;font face="Arial" size="4" color="#003395"&gt;In This Issue&lt;/font&gt;&lt;/strong&gt;
&lt;/P&gt;&lt;/span&gt;
&lt;!-- ADD 01 ENDS HERE --&gt;

&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="200"&gt;

&lt;!-- ADD 02 STARTS HERE --&gt;
&lt;span id="add02"&gt;
&lt;UL style="margin-top:10px;"&gt;

  
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Welcome!&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Product Spotlight &amp;ndash; &lt;a href="http://www.aspose.com/categories/file-format-components/aspose.metafiles-for-java/default.aspx"&gt;Aspose.Metafiles&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Export to HTML and plain text with Aspose.Words for Reporting Services&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Improvements in Aspose.Pdf for Reporting Services 1.3.0.0&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Aspose.BarCode gets better&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Aspose.Workflow for .NET gets a tune up&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Save documents as MHTML and OpenDocument Text with Aspose.Words for .NET&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Run Aspose.Grid.Web on medium trust security level&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Aspose.Pdf.Kit for .NET 3.1.0.0 released&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;DNS mail supported in Aspose.Network for .NET&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Technical Article &amp;ndash; Dynamically generate formatted Excel reports with an elegant graph&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;&lt;font color="#000000" size="2" face="Arial, Helvetica, sans-serif"&gt;Technical Tip &amp;ndash; Send mail using DNS&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
  &lt;/UL&gt;
&lt;/span&gt;
&lt;!-- ADD 02 ENDS HERE --&gt;





&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=700 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
  &lt;TD colspan="2"&gt;&lt;a name="1" id="1"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;p style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Welcome&lt;/font&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=1 colspan="2"&gt;
&lt;IMG height=2 src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width=700&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2" valign="top"&gt;&lt;P align=justify style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif"&gt;Welcome to the June 2008 issue of the Aspose  Newsletter! In this month&amp;rsquo;s newsletter, we will provide some introductory  information about our spotlight product: Aspose.Metafiles. We will also look at  the new and exciting features offered in the recent releases of Aspose.Words,  Aspose.Words for Reporting Services, Aspose.Pdf for Reporting Services,  Aspose.Pdf.Kit, Aspose.BarCode, Aspose.BarCode for Reporting Services,  Aspose.Workflow,&amp;nbsp; Aspose.Grid and  Aspose.Network. You will learn about the latest news from Aspose along with the  monthly Tech-Tip, which demonstrates how to send mails using mail servers of  recipient's domain with the help of Aspose.Network and an introduction to our  featured technical article which shows you how to create a business report to  input data into a excel worksheet, apply formatting to the cells and embed a  graph before saving the excel report to the disk.&lt;/P&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;a name="2" id="2"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;span style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Product Spotlight&lt;/font&gt;&lt;/span&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;img height="2" src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width="700" /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="78%" valign="top"&gt;&lt;p style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;a href="http://www.aspose.com/categories/file-format-components/aspose.metafiles-for-java/default.aspx"&gt;Aspose.Metafiles&lt;/a&gt; is  your Java solution for effectively managing metafiles. Aspose.Metafiles will  allow your Java applications to quickly and easily display and play both WMF  and EMF files. Aspose.Metafiles also offers support for metafile conversions.  With Aspose.Metafiles your development staff will be able to convert metafiles  to other popular graphic formats. Aspose.Metafiles was built to work seamlessly  with Aspose.Slides for Java. Through Aspose.Metafiles you will now be able to  add both WMF and EMF files into your PowerPoint presentations created with  Aspose.Slides. Take the time to &lt;a href="http://www.aspose.com/community/files/51/file-format-components/aspose.metafiles/default.aspx"&gt;download&lt;/a&gt; the free evaluation version today to see how Aspose.Metafiles can work for you.&lt;/p&gt;&lt;/TD&gt;
&lt;TD width="22%" valign="top"&gt;
&lt;DIV align=center&gt;
	&lt;a href="http://www.aspose.com/community/files/51/file-format-components/aspose.metafiles/default.aspx"&gt;&lt;img height="193" src="http://www.aspose.com/Newsletters/06_08/aspose.metafiles.for-java-3dbox.jpg" width="145" border="0" /&gt;&lt;/a&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;a name="3" id="3"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;p style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Export to HTML and plain text with Aspose.Words for Reporting Services&lt;/font&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;img height="2" src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width="700" /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2" vAlign=top&gt;
&lt;DIV align=left&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="78%" valign="top"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;We have recently released &lt;a href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;Aspose.Words  for Reporting Services&lt;/a&gt; version 2.2.0.0. In  this release we have added support for a couple of new export formats,  Hypertext markup language (HTML) and Plain text (TXT). Moreover, we've made  some improvements to the TXT export format, so that tables now preserve their  layout when exported to plain text. Also incorporated in this release are  numerous bug fixes and improvements. Please download the latest version of  Aspose.Words for Reporting Services from &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/default.aspx"&gt;here&lt;/a&gt;.  For more information please visit the official release &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/entry124439.aspx"&gt;page&lt;/a&gt; and the relevant blog &lt;a href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/28/aspose-words-for-reporting-services-2-2-0-0-released.aspx"&gt;post&lt;/a&gt;.&lt;/P&gt;&lt;/TD&gt;
&lt;TD width="22%" valign="top"&gt;
&lt;DIV align=center&gt;
  &lt;p&gt;&lt;a href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;&lt;br /&gt;
    &lt;img height="120" src="http://www.aspose.com/Newsletters/06_08/aspose.words.rs.jpg" width="107" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.aspose.com/Community/Files/54/aspose.network/entry110079.aspx"&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
  &lt;TD colspan="2"&gt;&lt;a name="4" id="4"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;p style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Improvements in Aspose.Pdf for Reporting Services 1.3.0.0&lt;/font&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;img height="2" src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width="700" /&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="78%" valign="middle"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;The latest version 1.3.0.0 of &lt;a href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.pdf-for-reporting-services/default.aspx"&gt;Aspose.Pdf for  Reporting Services&lt;/a&gt; has been released. In this  release support for some new features, such as custom embedded font, line  arrows, footnote, endnote and so on have been added. A Configuration tool is  also provided which can be used to install&amp;nbsp;  Aspose.Pdf for Reporting Services without MSI installer. In addition to  this 64-bit windows is now well supported. You can download the latest version  of Aspose.Pdf for Reporting Services form &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.pdf.reporting.services/default.aspx"&gt;here&lt;/a&gt;.  For detailed information, you are requested to view the official release &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.pdf.reporting.services/entry125129.aspx"&gt;page&lt;/a&gt; and the relevant blog &lt;a href="http://www.aspose.com/community/blogs/aspose.pdf/archive/2008/05/02/aspose-pdf-for-reporting-services-v1-3-0-0-released.aspx"&gt;post&lt;/a&gt;.&lt;br&gt;
&lt;/P&gt;&lt;/TD&gt;
&lt;TD width="22%" valign="top"&gt;
&lt;DIV align=center&gt;&lt;a href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.pdf-for-reporting-services/default.aspx"&gt;&lt;img height="121" src="http://www.aspose.com/Newsletters/06_08/aspose.pdf.rs.jpg" width="107" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.aspose.com/Products/Aspose.Pdf/"&gt;&lt;/a&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;tr&gt;
&lt;TD colspan="2"&gt;&lt;a name="5" id="5"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;TD colspan="2"&gt;&lt;p style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Aspose.BarCode gets better&lt;/font&gt;&lt;/TD&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;TD colspan="2"&gt;&lt;img height="2" src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width="700" /&gt;&lt;/TD&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;TD colspan="2"&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 id="table2"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="78%" valign="top"&gt;
&lt;P style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align=justify&gt;&lt;a href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;Aspose.BarCode&lt;/a&gt; just got a whole lot better. The latest version 2.5.1.0 of Aspose.Barcode for  .NET features an improved OneCode barcode recognition algorithm. The  recognition rate for OneCode barcode images is much better as compared to  previous releases. For more information please visit the official release &lt;a href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry124629.aspx"&gt;page&lt;/a&gt; as  well as the relevant blog &lt;a href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/13/aspose-barcode-for-net-v2-5-1-0-is-aailable.aspx"&gt;post&lt;/a&gt;.  Aspose.BarCode for Java version 1.4.0.0 has also been released. Included in  this release are numerous bug fixes and enhancements. You can view the details  at the official release &lt;a href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/entry125932.aspx"&gt;page&lt;/a&gt; and the accompanying blog &lt;a href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/15/released-aspose-barcode-for-java-v1-4-0-0.aspx"&gt;post&lt;/a&gt;.  You can download the latest version of Aspose.BarCode for .NET and Java from &lt;a href="http://www.aspose.com/community/files/53/visual-components/aspose.barcode/default.aspx"&gt;here&lt;/a&gt;.  With the release of &lt;a href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx"&gt;Aspose.BarCode  for Reporting Services&lt;/a&gt; version 1.3.0.0 you  can now generate OneCode barcode images on your SSRS reports. In this release  we have also fixed many barcode generation issues and problems for Code39, QR  and DataMatrix barcode. For more information please consult the release &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/entry124966.aspx"&gt;page&lt;/a&gt; and the associated blog &lt;a href="http://www.aspose.com/community/blogs/aspose.barcode/archive/2008/05/14/aspose-barcode-for-reporting-services-v1-3-0-0.aspx"&gt;post&lt;/a&gt;.  You can download the latest version of Aspose.BarCode for Reporting Services  from &lt;a href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode.reporting.services/default.aspx"&gt;here&lt;/a&gt;.&lt;/P&gt;&lt;/TD&gt;
&lt;TD width="22%" valign="top"&gt;&lt;div align="center"&gt;&lt;a href="http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx"&gt;&lt;img height="120" src="http://www.aspose.com/Newsletters/06_08/aspose.barcode.jpg" width="107" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/TD&gt;
&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;/tr&gt;
&lt;TR&gt;
  &lt;TD colspan="2"&gt;&lt;a name="6" id="6"&gt;&lt;/a&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;tr&gt;
  &lt;td colspan="2"&gt;&lt;p style=" margin-left:20px;"&gt;&lt;font color="#003395" size="4" face="Arial"&gt;Aspose.Workflow for .NET gets a tune up&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan="2"&gt;&lt;table cellspacing="0" cellpadding="0" width="100%" border="0" id="table3"&gt;
    &lt;tbody&gt;
      &lt;tr&gt;
        &lt;td colspan="2"&gt;&lt;img height="2" src="http://www.aspose.com/Newsletters/07_08/images/divider.jpg" width="700" /&gt;&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
        &lt;td width="78%" valign="top"&gt;&lt;p style="FONT-SIZE: 14px; MARGIN: 10px 20px; COLOR: #666666; FONT-FAMILY: Arial, Helvetica, sans-serif" align="justify"&gt;We have released &lt;a href="http://www.aspose.com/categories/utility-components/aspose.workflow-for-.net/default.aspx"&gt;Aspose.Workflow&lt;/a&gt; for .NET version 1.4.0.0. In this release, we did a lot of performance  profiling and tuning of the component. A new lock policy was introduced to  avoid exclusive access to the back end LockTable. It is more flexible and  scalable. We also made some fixes to the configuration module and xpdl parser  according the performance profiling. For more information please visit the  official release &lt;a href="http://www.aspose.com/community/files/54/utility-components/aspose.workflow/entry126828.aspx"&gt;page&lt;/a&gt; and the relevant blog &lt;a href="http://www.aspose.com/community/blogs/aspose.workflow/archive/2008/05/14/aspose-workflow-for-net-v1-4-0-0-is-ready.aspx"&gt;post&lt;/a&gt;.  The latest version of Aspose.Workflow for .NET can be downloaded from &lt;a href="http://www.aspose.com/community/files/54/utility-components/aspose.workflow/default.aspx"&gt;here&lt;/a&gt;.&lt;br /&gt;
        &lt;/p&gt;&lt;/td&gt;
        &lt;td width="22%" valign="top"&gt;&lt;div align="center"&gt; &lt;a href="http://www.aspose.com/categories/utility-components/aspose.workflow-for-.net/default.aspx"&gt;&lt;img height="120" src="http://www.aspose.com/Newsletters/06_08/aspose.workflow.jpg" width="107" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.aspose.com/Community/Files/54/aspose.network/default.aspx"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
      &lt;/tr&gt;
    &lt;/tbody&gt;
  &lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan="2"&gt;&lt;a name="7" id="722"&gt;&lt;/a&gt;&lt;