tags:

views:

613

answers:

2

Hi, I need to embed an Excel workbook/worksheet in a .NET WinForms application. So far, i have found only one way of doing it - by adding a Web Browser control to the application and navigating to an Excel file using this control. This is a very cumbersome solution. Is there an easier way of doing it? Thanks!

+2  A: 

Try this blog for more details (Did not try it myself...)

Dror
+1  A: 

SpreadsheetGear for .NET comes with an Excel compatible Windows Forms spreadsheet control which you can simply drag to your form. It includes a Workbook Designer which allows you to edit workbooks right in Visual Studio or load Excel workbooks from disk, and also includes a comprehensive API which is similar to Excel (except that it is .NET friendly).

You can learn more and try the free evaluation for yourself if this might work for you.

Disclaimer: I own SpreadsheetGear LLC

Joe Erickson