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();
        OleDbDataAdapter odda = new OleDbDataAdapter("select * from [电子订单$]", conn);
        odda.Fill(ds, "table");
        axSpreadsheet1.DataSource = ds.Tables[0];

error:can not cast “System.Data.DataTable”to“msdatasrc.DataSource”。 then i modify the code:axSpreadsheet1.DataSource = ds.Tables[0]; to axSpreadsheet1.DataSource = (msdatasrc.DataSource)ds.Tables[0]; there alsow has the error what can i do?

link|improve this question

there's a error is not very precise problem description, at least not one that allows us to help. – Darin Dimitrov Sep 1 '10 at 9:48
hcemp - please read msmvps.com/blogs/jon_skeet/archive/2010/08/29/… and then revise your question – Rob Fonseca-Ensor Sep 1 '10 at 9:50
feedback

1 Answer

up vote 0 down vote accepted

One obvious solution is to examine what is msdatasrc.DataSource. Create a new instance of it and than copy over the table rows to it, row by row or by using some other tool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.