using excel in C#
-
if my C# application have a webbrowser to open/operate an excel file. When I deliver the application to the user, must the user's computer has excel installled? It seems that all the office object are COM based not within the .NetFramework. any idea? thanks. :):)
-
if my C# application have a webbrowser to open/operate an excel file. When I deliver the application to the user, must the user's computer has excel installled? It seems that all the office object are COM based not within the .NetFramework. any idea? thanks. :):)
The .NET classes for Office are just wrappers around the COM automation interface. That means if you want your users to have Excel functionality, then they'll need Excel. There is no way around this. Michael 'War is at best barbarism...Its glory is all moonshine. It is only those who have neither fired a shot nor heard the shrieks and groans of the wounded who cry aloud for blood, more vengeance, more desolation. War is hell.' - General William Sherman, 1879
-
if my C# application have a webbrowser to open/operate an excel file. When I deliver the application to the user, must the user's computer has excel installled? It seems that all the office object are COM based not within the .NetFramework. any idea? thanks. :):)