axspreadsheet

Showing multiple cvs files in a c# winform app using AxSpreadsheet control

Hi, I am using the AxSpreadsheet control, how can I show multiple cvs files as worksheets on this control? Thanks. ...

How to load axspreadsheet in Visual Studio 2005 or C# Express 2008

I have office 2007 installed with .NET programmability checked. From VS2005/VC#2008 Toolbox I tried to add new item which is axspreadsheet, unfortunately I could not find it from .NET Framework / COM reference any ideas how to solve this problem? My main purpose is to load xls file to winform. Thanks ...

I have a question about axSpreadsheet,can any body help me?

I use it in C#,but when i set the source there's a error. Codes: string strConn = "Provider=Microsoft.Jet.OleDb.4.0;" + "data source=" + filename + ";Extended Properties='Excel 8.0; HDR=YES; IMEX=1'"; OleDbConnection conn = new OleDbConnection(strConn); conn.Open(); DataSet ds = new DataSet(); OleDbData...