Lin Kejian

How to Create a new xls document from Excel addins (VSTO 2005 se / Excel 2003)


Re: Visual Studio Tools for Office How to Create a new xls document from Excel addins (VSTO 2005 se / Excel 2003)

Cindy Meister

Use the Workbooks.Add method of the Application object. For example

Globals.ThisAddIn.Application.Workbooks.Add(System.Type.Missing);






Re: Visual Studio Tools for Office How to Create a new xls document from Excel addins (VSTO 2005 se / Excel 2003)

Linkejian

Thank you

It's helpful