Could you clearly explain the limitations to using Free Spire.XLS vs regular Spire.XLS? Free Spire.XLS seems to work fine for me, so why would I purchase a license?
Thanks.
Workbook workbook = new Workbook();
//set the version
workbook.Version = ExcelVersion.Version2007;
//your code...
workbook.SaveToFile("result.xlsx",ExcelVersion.Version2007);
PatriciaSordo wrote:App vb.net
Net framework 4.8
Spire.xls free 14.2.0.0
Test:
Dim newWorkbook As Workbook = New Workbook()
newWorkbook.Version = ExcelVersion.Version97to2003
dim file as string= "C:\test\a.xls"
newWorkbook .LoadFromFile(file)
newWorkbook.SaveToFile("C:\test\LibroTotal.xls", ExcelVersion.Version97to2003)
If file is xlsx (ExcelVersion.Version2016) ok, but with xls file (ExcelVersion.Version97to2003) is limited to 200 rows.
¿How can I load xsl file without limit rows?