Gal Shadeck
Gal Shadeck

Reputation: 532

Need to embed Excel worksheet in .NET application

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!

Upvotes: 1

Views: 2858

Answers (1)

Joe Erickson
Joe Erickson

Reputation: 7217

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

Upvotes: 3

Related Questions