Hello,
Is it possible to embed Office application in WinForms controll (having office installed on computer) ?
Thanks for help
Hello,
Is it possible to embed Office application in WinForms controll (having office installed on computer) ?
Thanks for help
Yes, it is possible. Excel is available as a control and you can use it. Look for licensing issues if any.
You just need to add these using statements:
using Microsoft.Office.Interop;
using Microsoft.Office.Interop.Excel;
Then you can add ExcelObj
and add a Workbork
and a Worksheet
to that. Its all pretty self explanatory.