How to convert Excel 2003 templates to Excel 2007 templates using C#?
How do I built a console applica开发者_JS百科tion that will convert all Excel 2003 templates to Excel 2007 templates?
Use Workbook.SaveAs()
, passing the file format as XlFileFormat.XlExcel12
.
精彩评论