|
Hi, i'm having trouble saving excel file with .NET.
if i'm trying to save like this:
mBook - is a excel worksheet
this.mBook.SaveAs(filename, mv, mv, mv, mv, mv, XlSaveAsAccessMode.xlExclusive, mv, mv, mv, mv);
i'm getting exception HRESULT: 0x800A03EC
when i'm saving the save workbook like this:
this .mBook.SaveCopyAs(filename);
everything is ok, except the fact, that file is saved in format, that older excel(for example 2000 or 2003) can't open.
i've tried to use different parameters on SaveAs function, for example change fileformat or access mode, but no luck :( |