vs2005 Dataset导出EXCEL,该如何处理

vs2005 Dataset导出EXCEL
vs2005 Dataset导出EXCEL
有没这方面的代码,搜索了几个,都不能用

------解决方案--------------------
我那有个例子去看看吧
------解决方案--------------------
asp.net直接输出为excel文件就可以了,如果是windowsform 需要调用excel的com对象
------解决方案--------------------
1.加入对excel的参考
2.
C# code

using Microsoft.Office.Interop.Excel;

 ApplicationClass excel = new ApplicationClass();
            excel.Application.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);


            for (int i = 1; i <= ds.Tables[0].Columns.Count; i++)
            {
                excel.Cells[1, i] = ds.Tables[0].Columns[i - 1].ColumnName.ToString().ToUpper();
            }
            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                for (int j = 0; j < ds.Tables[0].Columns.Count; j++)
                {
                    excel.Cells[i + 2, j + 1] = ds.Tables[0].Rows[i][j].ToString();
                }
            }
            excel.Visible = true;
            excel.ScreenUpdating = true;

------解决方案--------------------

private static void ExportToExcel(DataSet ds)
{
object oMissing = System.Reflection.Missing.Value;
Excel.ApplicationClass xlApp = new Excel.ApplicationClass();
try
{
// 打开Excel文件。
Excel.Workbook xlWorkbook =xlApp.Workbooks.Add(1);
Excel.Worksheet xlWorksheet;
// 循环所有DataTable
for( int i=0; i<ds.Tables.Count; i++ )
{
// 添加入一个新的Sheet页
xlWorksheet = (Excel.Worksheet)xlWorkbook.Worksheets.Add(oMissing,oMissing,1,oMissing);
xlWorksheet.Name = ds.Tables[i].TableName;
for (int j = 0; j < ds.Tables[i].Columns.Count; j++) //写列标题
{
xlWorksheet.Cells[1, j + 1] = ds.Tables[i].Columns[j].ColumnName;
}
for (int r = 0; r < ds.Tables[i].Rows.Count; r++) //写值
{
for (int m = 0; m < ds.Tables[i].Columns.Count; m++)
{
xlWorksheet.Cells[r + 2, m + 1] = ds.Tables[i].Rows[r][m];
}
}
}
xlApp.Visible=true;

}
catch 
{


}

}
  
*****************************************************************************
欢迎使用CSDN论坛专用阅读器 : CSDN Reader(附全部源代码) 

http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783.html