c# datagrid转存成excel怎么搞?急~
由于毕业设计需要这个功能,小弟弟不会,请会的兄弟姐妹多多指教
如果程序中需要引用什么的话,请写的详细点,在哪里引用出来的
我运行成功了话还给加分,绝不食言
参考答案:我有这个做好的成品,要不看一下。。
Excel.Application excel= new Excel.Application();
int rowIndex=1;
int colIndex=0;
excel.Application.Workbooks.Add(true);
regist r=new regist();
dt=r.getAllData();//获取所有数据
foreach(DataColumn col in dt.Columns )
{
colIndex++;
excel.Cells[1,colIndex]=col.ColumnName;
}
foreach(DataRow row in dt.Rows)
{
rowIndex++;
colIndex=0;
foreach(DataColumn col in dt.Columns)
{
colIndex++;
excel.Cells[rowIndex,colIndex]=row[col.ColumnName].ToString();
}
}
//后台处理
excel.Visible=true;
}
首先要导一个excel library的库。