在Winform程序中对Word进行操作需要引入相关的COM组件。如果安装的office2007则引入12.0版本的COM组件,如下图所示:
在对应的CS文件中使用其名字空间,
using System.Reflection;
using MSWord=Microsoft.Office.Interop. Excel
using Microsoft.Office.Core;
using System.IO;
string strDir = Directory.GetCurrentDirectory();
string fileName = strDir + @"\test.xls";
MSExcel.Application excelApp= new MSExcel.Application();
excelApp.Visible = true;//是打开可见
MSExcel.Workbooks wbks = excelApp.Workbooks;
MSExcel._Workbook wbk = wbks.Add(fileName);
wbk.Close();//关闭文档
wbks.Close();//关闭工作簿
excelApp.Quit();//关闭excel应用程序
System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp);//释放excel进程
excelApp = null;
string strDir = Directory.GetCurrentDirectory();
string fileName = strDir + @"\test.xls";
MSExcel.Application excelApp= new MSExcel.Application();
excelApp.Visible = true;//是打开可见
MSExcel.Workbooks wbks = excelApp.Workbooks;
MSExcel._Workbook wbk = wbks.Add(fileName);
MSExcel._Worksheet whs;
whs = wbk.Sheets[1];//获取第一张工作表
string sheetName = whs.Name;//工作表名称
int Rowcount = whs.Rows.Count;//工作表行数
whs = wbk.Sheets[2];
whs.Activate();//激活工作表
MSExcel.Sheets shs = wbk.Sheets;//获取工作表
//whs = (MSExcel.Worksheet)shs.get_Item(3);//获取第三张工作表
////excelApp.DisplayAlerts = false;
//whs.Delete();//删除第三章工作表
//wbk.Save();
whs = (MSExcel.Worksheet)shs.get_Item(3);//获取第三张工作表
whs.Name = "计算机";//重命名工作表
excelApp.DisplayAlerts = false;//不弹出是否保存的对话框
wbk.SaveCopyAs(strDir + @"\新建文件.xls");
string strDir = Directory.GetCurrentDirectory();
string fileName = strDir + @"\test.xls";
MSExcel.Application excelApp= new MSExcel.Application();
excelApp.Visible = true;//是打开可见
MSExcel.Workbooks wbks = excelApp.Workbooks;
MSExcel._Workbook wbk = wbks.Add(fileName);
object Nothing = Missing.Value;
MSExcel._Worksheet whs;// = wbk.Sheets.Add(Nothing, Nothing, Nothing, Nothing);
whs = wbk.Sheets[1];//获取第一张工作表
whs.Activate();
//((MSExcel.Range)whs.Rows[1, Nothing]).Delete(MSExcel.XlDeleteShiftDirection.xlShiftUp);//删除工作表第一行
//((MSExcel.Range)whs.Cells[whs.Rows.Count, 2]).Delete(MSExcel.XlDeleteShiftDirection.xlShiftToLeft);//删除工作表第二列
((MSExcel.Range)whs.Rows[3, Missing.Value]).RowHeight = 5;//设置行高
((MSExcel.Range)whs.Rows[3, Missing.Value]).ColumnWidth = 5;//设置列宽
string strDir = Directory.GetCurrentDirectory();
string fileName = strDir + @"\test.xls";
MSExcel.Application excelApp= new MSExcel.Application();
excelApp.Visible = true;//是打开可见
MSExcel.Workbooks wbks = excelApp.Workbooks;
MSExcel._Workbook wbk = wbks.Add(fileName);
object Nothing = Missing.Value;
MSExcel._Worksheet whs;// = wbk.Sheets.Add(Nothing, Nothing, Nothing, Nothing);
whs = wbk.Sheets[1];//获取第一张工作表
whs.Activate();
MSExcel.Range rang = (MSExcel.Range)whs.Cells[2, 2];//单元格B2
string content = rang.Text;//该单元格文本
double height = rang.Height;//单元格的高度
double width = rang.Width;//单元格的宽度
whs.Cells[2, 12] = "=A2&B2";//设置公式
whs.Cells[2, 13] = "I love C#";//设置内容
rang = whs.get_Range("A1","B2");
rang.Merge(Nothing) ;//单元格合并