In This Issue…

  • Welcome!
  • Product Spotlight: Aspose.BarCode
  • Aspose.Network supports Microsoft Exchange Server
  • Aspose.Words for .NET 4.2.0 includes WordML Import feature
  • Technical Tip – Convert documents to different formats
  • Aspose.Pdf.Kit for .NET 2.4.0.0 Mega Hotfix

Welcome

Welcome to the April 2007 issue of the Aspose Newsletter! In this month’s newsletter, we will provide some introductory information about our spotlight product: Aspose.BarCode. We will also look at the new and exciting features offered in recent releases of Aspose.Network, Aspose.Words and Aspose.Pdf.Kit. You will learn about the latest news from Aspose along with the monthly Tech-Tip, which demonstrates how you can convert your documents to different file formats using Aspose.Words.

Product Spotlight

Aspose.BarCode is a set of barcode generation and recognition controls built to allow developers for adding barcode functionality to all kinds of .NET applications. Moreover, with the recent support of Compact Framework, Aspose.BarCode also provides wider usability options to developers. Aspose.BarCode conforms to most of the barcode standards and specifications available now-a-days.

Aspose.BarCode supports most common 1D and 2D barcode symbologies including EAN13, EAN8, UPCA, UPCE, BooklandEAN, Interleaved2of5, Standard2of5, MSI, Codabar, Postnet, Planet, Code128, Code39 Extended, Code39 Standard, Code93 Extended, Code93 Standard, QR, Aztech, PDF417 and DataMatrix etc. Aspose.BarCode also supports printing and saving barcode images to different formats. Passing USPS Barcode Certification with “A” Grade is the proof of best quality features offered by Aspose.BarCode. Please download the free evaluation version of Aspose.BarCode to see how it fulfills your business needs. To learn more about its usage, please click here.

Download Aspose.BarCode

Aspose.Network supports Microsoft Exchange Server

In the recent release of Aspose.Network 3.3.0.0, many improvements are made but the most significant improvement is the support of Microsoft Exchange Server, which ensures that now developers can easily fetch, send and delete emails in an exchange store using Aspose.Network. Moreover, Aspose.Network now also allows its users to drag & drop email messages from Microsoft Outlook to their windows forms with the greater flexibility. For more details, please read the complete story.

Aspose.Words for .NET 4.2.0 includes WordML Import feature

Aspose.Words for .NET 4.2.0 introduces a great new feature and that is WordprocessingML Import. So, now, developers can open and save documents with DOC, RTF, WordML and HTML/XHTML formats using Aspose.Words. Moreover, it is also possible to save documents in TXT and PDF (when used with Aspose.Pdf) formats. Besides some new features, Aspose.Words 4.2.0 also provides 12 bug fixes related to the processing of DOC, RTF, WordML, HTML and PDF documents. To get more details about the improvements made in Aspose.Words for .NET 4.2.0, please click here.

Technical Tip

Convert documents to different formats

One of the important features of Aspose.Words for .NET is extensive support of DOC, RTF, WordprocessingML and HTML import & export. You can convert documents between any of these formats using just two lines of code. DOC, RTF and WordprocessingML are Microsoft Word document formats. Aspose.Words supports these formats to a very high degree and therefore conversions between these formats in any direction are very precise. No document content or formatting is lost during such conversions. Aspose.Words can be used in a server or client application, single threaded or multi-threaded.

[C#]

// Convert from RTF to DOC
Aspose.Words.Document doc = new Document(“C:\\MyFolder\\MyFile.rtf”);
doc.Save(“C:\\MyFolder\\MyFile.doc”);

// Convert from HTML to RTF
Aspose.Words.Document doc = new Document(“C:\\MyFolder\\MyFile.html”);
doc.Save(“C:\\MyFolder\\MyFile.rtf”);

// Convert from DOC to WordML
Aspose.Words.Document doc = new Document(“C:\\MyFolder\\MyFile.doc”);
doc.Save(“C:\\MyFolder\\MyFile.xml”);

// And so on.

[VB]

’ Convert from RTF to DOC
Dim doc As Aspose.Words.Document = New Document(“C:\\MyFolder\\MyFile.rtf”)
doc.Save(“C:\\MyFolder\\MyFile.doc”)

’ Convert from HTML to RTF
Dim doc As Aspose.Words.Document = New Document(“C:\\MyFolder\\MyFile.html”)
doc.Save(“C:\\MyFolder\\MyFile.rtf”)

’ Convert from DOC to WordML
Dim doc As Aspose.Words.Document = New Document(“C:\\MyFolder\\MyFile.doc”)
doc.Save(“C:\\MyFolder\\MyFile.xml”)

’ And so on.

Aspose.Pdf.Kit for .NET 2.4.0.0 Mega Hotfix

In the month of March, 2007, the Aspose.Pdf.Kit team released a Mega Hotfix Aspose.Pdf.Kit 2.4.0.0 that provides about 8 bug fixes related to printing and converting files, appending same input streams, watermarking with PNG images, concatenating PDF documents, hyperlinks and other general issues. In addition to these bug fixes, few new features are also added to Aspose.Pdf.Kit to make it more secure and powerful. Be sure to check out the full list of these bug fixes and newly added features. Please download the latest release now to make your applications work better using Aspose.Pdf.Kit.