Thread: how to do this?
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Peter Huang [MSFT] Peter Huang [MSFT] is offline
external usenet poster
 
Posts: 225
Default how to do this?

Hi

We can automation Excel.
The code line below will create two new workbooks.

Excel.Application exApp = new Excel.ApplicationClass();
exApp.Visible = true;
exApp.Workbooks.Add(Missing.Value);
exApp.Workbooks.Add(Missing.Value);

Here is a KB article about how to automation Excel in C# for your reference.
302084 How To Automate Microsoft Excel from Microsoft Visual C# .NET
http://support.microsoft.com/?id=302084

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.