jinx_0 Posted June 16, 2013 Report Share Posted June 16, 2013 Uso windows 8, con visual studio ultimate 2012 . Estoy aprendiendo a programar en c# y quise hacer este programa que muestra en el tutorial. tuve que corregir el codigo por lo que me quedó así: string constr = "Provider = Microsoft.ACE.OLEBD.12.0; Data Source=" + textBox1.Text + "Extended Properties =\"Excel 12.0; HDR=YES;\";"; OleDbConnection con = new OleDbConnection(constr); OleDbDataAdapter sda = new OleDbDataAdapter("Select * from [" + textBox2.Text + "$]", con); DataTable dt = new DataTable(); sda.Fill(dt); dataGridView1.DataSource = dt; pero cuando lo hago correr me encuentro con un error, segui las instrucciones de esta paginahttp://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/57cb3121-755d-4cd5-8cda-a0630cbf535bPero el problema persiste. Les dejo un pantallaso help! :( Link to comment Share on other sites More sharing options...
LexXxE Posted June 16, 2013 Report Share Posted June 16, 2013 no corresponde aquí, lo muevo a TI - Programacion & Webmasters Link to comment Share on other sites More sharing options...
jinx_0 Posted June 17, 2013 Author Report Share Posted June 17, 2013 no corresponde aquí, lo muevo a TI - Programacion & Webmasters ok sorry pense que iba en el otro ;( Link to comment Share on other sites More sharing options...
AshWilliams Posted June 19, 2013 Report Share Posted June 19, 2013 Al perecer el string esta mal formado....prueba con un string con los datos en bruto y saca el trozo de código referente a Excel, sólo para ver si funciona de esa forma ;) Saludos :krider: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now