What steps will reproduce the problem?
1.Open a string file name with Workbook.Load(string file)
2.
3.
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
Updating the Workbook.Load to below fixes the issue
public static Workbook Load(string file)
{
CompoundDocument doc = CompoundDocument.Load(file);
if (doc == null) throw new Exception("Invalid Excel file");
byte[] bookdata = doc.GetStreamData("Workbook");
return WorkbookDecoder.Decode(new MemoryStream(bookdata));
}
Original issue reported on code.google.com by paulgh...@msn.com on 28 Sep 2010 at 10:26
Original issue reported on code.google.com by
paulgh...@msn.com
on 28 Sep 2010 at 10:26