I'm facing a strange issue when trying to open an excel sheet through a C# application. it uses something like the following while the templatePath is "C:\template.xls" for example.
Workbook excel_workbook = this.excel.Workbooks.Open(templatePath,
mMissingValue, false, mMissingValue, mMissingValue, mMissingValue, mMissingValue,
mMissingValue, mMissingValue, mMissingValue, mMissingValue,
mMissingValue, mMissingValue, mMissingValue, mMissingValue);
then it involves the excel_workbook object in some operations. the problem is that excel_workbook.name = template1 not template which results in displaying the save as dialog box when clicking on save. this behavior breaks the workflow from the business prespective.
would anyone help in this? noting that other sheets are working correctly.