Spire.XLS for .NET 7.8
Download

Spire.XLS for .NET 7.8

Spire.XLS for .NET is a professional Excel .NET component
1 
Rating
Your vote:
Latest version:
7.8 See all
Developer:
Screenshots
1 / 5
Awards (3)
Show all awards
Software Informer Virus Free award
Download

Spire.XLS for .NET is a professional Excel .NET component. This Professional .NET Excel component is a standalone Excel .NET managed assembly and does not depend on Microsoft Office Excel. Spire.XLS for .NET offers support both for the old Excel 97-2003 format (.xls) and for the new Excel 2007,Excel 2010 and Excel 2013 (.xlsx, .xlsb, .xlsm), along with Open Office(.ods) format. It features fast and reliably compared to developing your own spreadsheet manipulation solution or using Microsoft Automation.

Comments (2)

1
Rating
1 vote
5 stars
0
4 stars
0
3 stars
0
2 stars
0
1 stars
1
User

Your vote:

G
Guest
Thanks for sharing, It’s very informative and to the point. I came across another API by the name of Aspose.Cells which is also considered good with CSV & XLS/XLSX reading and conversion. Could you please share some code for this API and also you thoughts?

Was it helpful?  yes(0) no(0) | Reply
R
Rave
if (File.Exists(Util.XLSXFileName))
{
File.Delete(Util.XLSXFileName);
}
//Save as xlsx using Spire
Workbook workbook = new Workbook();
workbook.LoadFromFile(Util.CSVFileName, ",", 1, 1);
Worksheet sheet = workbook.Worksheets[0];
sheet.Name = "csv to excel";
workbook.SaveToFile(Util.XLSXFileName, ExcelVersion.Version2010);

Was it helpful?  yes(0) no(0) | Reply