Jump to content

problema con excel y C#


Recommended Posts

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 pagina

http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/57cb3121-755d-4cd5-8cda-a0630cbf535b

Pero el problema persiste. Les dejo un pantallaso

PROBLEMA.png

 

help! :(

Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...