Por favor si alguien puede ayudarme
a exportar un datagrid a excel con
Visual C#.net se los agradeceria mucho.
Es que ya he buscado muchos ejemplos pero solo he encontrado en visual basic .net .
Ademas estoy usando
Visual Studio .net 2002, nose si se pueda con esta version exportar a excel.
Si alguien puede contestarme algo se lo agradecer muchisimo jejejej.
Saludos cordiales a todos !!!!!
*****************************************************************
--> De hecho este es el codigo de la forma donde no funciona la exportacion si alguien sabe como arreglarlo o mejorar diganmelo. ESTA REALIZADO EN "VISUAL STUDIO 2002, VISUAL C#.NET."
--> estas son las librerias que se usan, segun esto.
*************************************
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using CoreLab.MySql;
using RKLib.ExportData;
**********************************
--> este es el codigo para el proceso de exportacion con un boton.
private void Form1_Load(object sender, System.EventArgs e)
{
this.llenaGrid();
}
private void button1_Click(object sender, System.EventArgs e)
{
this.Close();
}
private void llenaGrid()
{
string sConnectionString;
sConnectionString = "Host=localhost;User Id=amor;Database=ejemplo1;";
MySqlConnection con1 = new MySqlConnection(sConnectionString);
con1.Open();
MySqlDataAdapter daPrueba = new MySqlDataAdapter("SELECT * FROM alumno", con1);
DataSet dsPrueba = new DataSet("alumno");
daPrueba.FillSchema(dsPrueba,SchemaType.Source, "alumno");
daPrueba.Fill(dsPrueba,"alumno");
DataTable tbldbo_Prueba;
tbldbo_Prueba = dsPrueba.Tables["alumno"];
dataGrid1.DataSource = tbldbo_Prueba;
//return dsPrueba;
}
private void btnExportar_Click_1(object sender, System.EventArgs e)
{
DataTable tbldbo_Prueba = dsPrueba.Tables["alumno"].Copy();
// Export all the details to Excel
RKLib.ExportData.Export objExport = new RKLib.ExportData.Export("Win");
objExport.ExportDetails(tbldbo_Prueba, Export.ExportFormat.Excel, "\\alumnoinfo.xls");
MessageBox.Show("Informacion Exportada");
}
}
}
*******************************************************************