Open GoogleCodeExporter opened 8 years ago
I had the same problem a few days ago, and I solved altering a piece of code in
the Office\Excel\SpreadSheet\Workbook.cs
public static Workbook Load(string file)
{
// I Changed the following piece of code because of error "stream not writable"
//return Load(File.OpenRead(file));
return Load(File.Open(file, FileMode.OpenOrCreate));
}
Original comment by ElBer...@gmail.com
on 4 Oct 2010 at 12:41
Original issue reported on code.google.com by
sdmclaug...@gmail.com
on 24 Sep 2010 at 3:16