SaveWorkbookAs edit

This commit is contained in:
Sergey Chebotar 2022-02-02 18:13:03 +03:00
parent 0258eb4d2b
commit 94b7c4a52b

View File

@ -58,10 +58,12 @@ namespace RehauSku.Interface
workbook.Close(false); workbook.Close(false);
} }
else
{
string fileName = dialog.FileName; string fileName = dialog.FileName;
workbook.SaveAs(fileName); workbook.SaveAs(fileName);
} }
} }
} }
}
} }