Sau khi đã load dữ liệu lên datagridview. Bây giờ em xuất dữ liệu hiển thị từ datagridview ra excel nhưng quá trình xuất quá chậm. Nhờ các anh/chị xem giúp em cần thêm code hay chỉnh sửa gì, ở dòng nào nữa để quá trình xuất được nhanh hơn.

Dưới là code export:

Microsoft.Office.Interop.Excel.Application objexcelapp = new Microsoft.Office.Interop.Excel.Application();

objexcelapp.Application.Workbooks.Add(Type.Missing );

objexcelapp.Columns.ColumnWidth = 25;

for (int i = 1; i < gridviewID.Columns.Count + 1; i++)

{

objexcelapp.Cells[1, i] = gridviewID.Columns[i - 1].HeaderText;

}

/*For storing Each row and column value to excel sheet*/

for (int i = 0; i < gridviewID.Rows.Count; i++)

{

for (int j = 0; j < gridviewID.Columns.Count; j++)

{

if (gridviewID.Rows.Cells[j].Value != null)

{

objexcelapp.Cells[i + 2, j + 1] = gridviewID.Rows.Cells[j].Value.ToString();

}

}

}

MessageBox.Show("Da gop xong theo duong dan D:\\" + excelFilename + ".xlsx");

objexcelapp.ActiveWorkbook.SaveCopyAs("D:\\" + excelFilename + ".xlsx");

objexcelapp.ActiveWorkbook.Saved = true;