|
|
|
การ export datagridview to excel ต้องการเรียกไฟล์ Excel ที่สร้างไว้แล้วนำข้อมูลที่อยู่ใน Datagridview Export ลงไปไว้ใน Sheet 2 ครับ |
|
|
|
|
|
|
|
Microsoft.Office.Interop.Excel._Application app = new Microsoft.Office.Interop.Excel.Application();
Microsoft.Office.Interop.Excel._Workbook workbook = app.Workbooks.Add(Type.Missing);
Microsoft.Office.Interop.Excel._Worksheet worksheet = null;
app.Visible = true;
worksheet = workbook.Sheets["Sheet2"];
worksheet = workbook.ActiveSheet;
worksheet = workbook.Worksheets[2]; /// สั่งให้ ออก sheet2
for (int i = 1; i < dataGridView2.Columns.Count + 1; i++)
{
worksheet.Cells[1, i] = dataGridView2.Columns[i - 1].HeaderText;
}
for (int i = 0; i < dataGridView2.Rows.Count - 1; i++)
{
for (int j = 0; j < dataGridView2.Columns.Count; j++)
{
if (dataGridView2.Rows[i].Cells[j].Value != null)
{
worksheet.Cells[i + 2, j + 1] = dataGridView2.Rows[i].Cells[j].Value.ToString();
}
else
{
worksheet.Cells[i + 2, j + 1] = "";
}
}
}
}
คือตอนนี้ ลงไปได้ ที่ Sheet 2 แต่ผม ยังหาวิธีที่ให้ไปเรียกไฟล์ที่ สร้างไว้ไม่ได้ คครับ
|
ประวัติการแก้ไข 2014-08-04 09:19:21
|
|
|
|
Date :
2014-08-04 09:18:35 |
By :
natsit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|