C# DataGridView의 데이터를 EXCEL로 내보내기
Microsoft Office Excel: 1using Excel = Microsoft.Office.Interop.Excel;
1 DataGridView Excel#region DataGridView Excel
2 /**////
3 /// DataGridView Excel
4 ///
5 /// DataGridView
6 /// Excel
7 ///
8 public bool ExportDataGridview(DataGridView gridView,bool isShowExcle)
9 {
10 if (gridView.Rows.Count == 0)
11 return false;
12 // Excel
13 Excel.Application excel = new Excel.Application();
14 excel.Application.Workbooks.Add(true);
15 excel.Visible = isShowExcle;
16 //
17 for (int i = 0; i < gridView.ColumnCount; i++)
18 {
19 excel.Cells[1, i + 1] = gridView.Columns[i].HeaderText;
20 }
21 //
22 for (int i = 0; i < gridView.RowCount-1; i++)
23 {
24 for (int j = 0; j < gridView.ColumnCount; j++)
25 {
26 if (gridView[j, i].ValueType == typeof(string))
27 {
28 excel.Cells[i + 2, j + 1] = "'" + gridView[j, i].Value.ToString();
29 }
30 else
31 {
32 excel.Cells[i + 2, j + 1] = gridView[j, i].Value.ToString();
33 }
34 }
35 }
36 return true;
37 }
38 #endregion 1if (!oper.ExportDataGridview(dgvEquiment, true))
2 MessageBox.Show(" , !", " ", MessageBoxButtons.OK, MessageBoxIcon.Information);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.