Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
because currently the support is for xls files prior to excel 2007 xlsx format.
we plan to support them in the future
Original comment by regisbsb...@gmail.com
on 27 Jun 2011 at 11:10
ok,
but Excel 2010 correctly open up every legacy file format like xls, while it
doesn't open only the xls file generated with excellibrary ...
I think that there's something wrong in the generated xls file by excel library.
Original comment by Alessio....@gmail.com
on 27 Jun 2011 at 1:29
This should not have been closed...I have the same issue - I can open every
other old .XLS file except the ones generated by the dll.
2010 can open 97-2003 version .XLS files, so why do the ones generated by the
dll fail to open?
To reiterate - this is not an XLSX problem....
Steve
Original comment by stevenma...@gmail.com
on 7 Sep 2011 at 10:52
I have the same issue, I can´t open files created by this dll.
Original comment by luispeix...@gmail.com
on 8 Sep 2011 at 4:40
[deleted comment]
[deleted comment]
[deleted comment]
[deleted comment]
Me neither! Why hasn't this issue been resolved yet?
Original comment by somru...@gmail.com
on 21 Oct 2011 at 2:31
[deleted comment]
I'm having the same problem
Original comment by mmuti...@gmail.com
on 12 Nov 2011 at 8:59
[deleted comment]
The problem is that Office 2010 doesn't support it unless there are 100 or more
Cells Filled.
My work around was to have it fill 100 cells in a for loop with "". That way
it gets it's 100 cell count in and then it works just fine.
VB.Net
Dim filename As String = "c:\MyNewFile.xls"
Dim workbook = New Workbook()
Dim FakeWS = New Worksheet("FakeWorkSheet")
workbook.worksheets.Add(FakeWS)
For i As Integer = 0 To 100
FakeWS.Cells(i, 0) = New Cell("")
Next
workbook.save(filename)
Cheers^^
Original comment by zet...@gmail.com
on 14 Nov 2011 at 8:17
Original issue reported on code.google.com by
Alessio....@gmail.com
on 23 Dec 2010 at 10:30