Friday, July 30, 2010
Register  |  Login
Blogs
 News & Releases Minimize
Nasosoft Component for .NET v2.8 Released - Wednesday, July 28, 2010

Nasosoft Component for .NET v2.8 has released with many improvements.

Nasosoft Component for .NET is a suite of comprehensive .NET controls, including EXCEL, PDF, and RTF document format engines, RTF to HTML, HTML to RTF, RTF to TEXT, HTML to TEXT document transform engines, Chart control, SMTP, POP3, IMAP, FTP, WebDAV internet SDK and ZIP, GZIP, TAR compression.

What's new

  • Nasosoft Excel 
    • Support reading Excel 95 file format  
    • Improved error recovery for loading unreadable excel files
  • Nasosoft Transform
    • Support Text to PDF convertion 
  • Nasosoft PDF
    • Support MeasueString
  • Many Bug fixes from v2.7

How to Download

 

 

 Most recent blog entries Minimize
Nasosoft .NET Components v2.2 is Available
.NET Programming By host on 10/29/2009 9:51 PM
Nasosoft .NET Components v2.2 is Available
More...

How to Extract Text from PDF documents with PdfTextReader
.NET Programming By host on 8/8/2009 6:16 AM

Nasosoft.Documents.Pdf offers the capability to extract text content from PDF documents. You can use PdfTextReader to read text content easily. For example:

[C#]

            using (PdfTextReader r = new PdfTextReader(FileName))
            {
                System.Console.WriteLine(r.ReadToEnd());
            }

[VB]

            Dim reader As PdfTextReade ...

More...

How to use PdfDocumentEditor to Edit Pdf Documents
.NET Programming By host on 7/26/2009 8:48 PM
How to use PdfDocumentEditor to Edit Pdf Documents
More...

Convert Html to RTF using Nasosoft.Documents.Transform
.NET Programming By host on 6/6/2009 4:58 AM
This article demonstrates how to convert a HTML format document to RTF format.
More...