How to use COM interop to show Excel window inside windows form
I want to display an excel inside my .net Windows Application. How can I do this using COM开发者_JAVA技巧 interop
Any help is appreciated.
Please Help ...!!
Thank You
Yohan
As far as I know, COM interop does not allow you to do that.
What you can do is use the WebBrowser
control and browse to the Excel document. This should allow you to view/edit the Excel file. There is an example here
精彩评论