Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

interop C# save as and replace

//So you can do this to stop DisplayAlerts from appearing:

myApp.DisplayAlerts = false;

//And then if you want to save with specifying a file name, you can do this:
//specifying a file name
myWorkSheet.SaveAs(filename, Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookDefault, Type.Missing, Type.Missing, true, false, XlSaveAsAccessMode.xlNoChange, XlSaveConflictResolution.xlLocalSessionChanges, Type.Missing, Type.Missing);
myWorkBook.Close(true);
 
PREVIOUS NEXT
Tagged: #interop #save #replace
ADD COMMENT
Topic
Name
5+3 =