关于 c# 操做 world

把数据存放在datatable 中并循环取出来数据而后再保存在world中 html

    protected void ExportToWord(DataSet Ads)
    {
        try
        {
          


            Object Nothing = System.Reflection.Missing.Value;
            //Directory.CreateDirectory("C:/CNSI"); //建立文件所在目录
            //string name = "CNSI_" + "53asdf" + ".doc";
            //object filename = "C://CNSI//" + name; //文件保存路径
            //建立Word文档
            Word.Application WordApp = new Word.ApplicationClass();
            Word.Document WordDoc = WordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);
            WordApp.Selection.ParagraphFormat.LineSpacing = 15f;//设置文档的行间距

            int k = 0;

            //文档中建立表格
            for (int i = 0; i < 10; i++)
            {

                //表头
                Word.Table newTableH = WordDoc.Tables.Add(WordApp.Selection.Range, 1, 1, ref Nothing, ref Nothing);
                newTableH.Borders.OutsideLineStyle = Word.WdLineStyle.wdLineStyleNone;
                newTableH.Borders.InsideLineStyle = Word.WdLineStyle.wdLineStyleNone;
                //填充表格内容
                newTableH.Cell(1, 1).Range.Text = "班组交接记录表";
                newTableH.Cell(1, 1).Range.Bold = 2;//设置单元格中字体为粗体
                WordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;//水平居中
                k += 2;
                object countH = (object)k;
                object WdLineH = Word.WdUnits.wdLine;//换一行;
                WordApp.Selection.MoveDown(ref WdLineH, ref countH, ref Nothing);//移动焦点
                WordApp.Selection.TypeParagraph();//插入段落

                //时间
                Word.Table newTableT = WordDoc.Tables.Add(WordApp.Selection.Range, 1, 1, ref Nothing, ref Nothing);
                newTableT.Borders.OutsideLineStyle = Word.WdLineStyle.wdLineStyleNone;
                newTableT.Borders.InsideLineStyle = Word.WdLineStyle.wdLineStyleNone;
                WordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphRight;//水平居中
                //填充表格内容
                newTableT.Cell(1, 1).Range.Text = "2013年3月1日";
                newTableT.Cell(1, 1).Range.Bold = 1;//设置单元格中字体为粗体
                k += 3;
                object countT = (object)k;
                object WdLineT = Word.WdUnits.wdLine;//换一行;
                WordApp.Selection.MoveDown(ref WdLineT, ref countT, ref Nothing);//移动焦点
                WordApp.Selection.TypeParagraph();//插入段落

                //主界面
                Word.Table newTable = WordDoc.Tables.Add(WordApp.Selection.Range, 20, 1, ref Nothing, ref Nothing);
                newTable.Borders.OutsideLineStyle = Word.WdLineStyle.wdLineStyleSingle;
                newTable.Borders.InsideLineStyle = Word.WdLineStyle.wdLineStyleDot;
                WordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphLeft;//水平居中
                //填充表格内容
                newTable.Cell(1, 1).Range.Text = "岗位人员:";
                newTable.Cell(1, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(3, 1).Range.Text = "岗位班前交接内容:";
                newTable.Cell(3, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(5, 1).Range.Text = "本班生产运行状况:";
                newTable.Cell(5, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(7, 1).Range.Text = "上级工做指令:";
                newTable.Cell(7, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(9, 1).Range.Text = "横向联系记录:";
                newTable.Cell(9, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(11, 1).Range.Text = "存在的问题及处理状况:";
                newTable.Cell(11, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(13, 1).Range.Text = "下班注意事项:";
                newTable.Cell(13, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(15, 1).Range.Text = "班后交接内容:";
                newTable.Cell(15, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(16, 1).Range.Text = "工具用具是否无缺、齐全:";
                newTable.Cell(16, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(17, 1).Range.Text = "岗位卫生状况是否合格:";
                newTable.Cell(17, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(18, 1).Range.Text = "岗位防御用品是否无缺:";
                newTable.Cell(18, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(19, 1).Range.Text = "消防器材及设施是否无缺:";
                newTable.Cell(19, 1).Range.Bold = 1;//设置单元格中字体为粗体

                newTable.Cell(20, 1).Range.Text = "交班签名:" + "****" + "接班签名" + "***";
                newTable.Cell(20, 1).Range.Bold = 1;//设置单元格中字体为粗体

                k += 25;
                object count = (object)k;
                object WdLine = Word.WdUnits.wdLine;//换一行;
                WordApp.Selection.MoveDown(ref WdLine, ref count, ref Nothing);//移动焦点
                WordApp.Selection.TypeParagraph();//插入段落
                object breakPage = Microsoft.Office.Interop.Word.WdBreakType.wdPageBreak;
                WordApp.Selection.InsertBreak(ref breakPage);

            }

            //文件保存
            //WordDoc.SaveAs(ref filename, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
            WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);//保存
            WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);//结束进程

        }
        catch (Exception ex)
        {
            StreamOperate.StreamWrite("交接班记录查询", "ExportToWord", ex.Message, ex.StackTrace);
        }





    }
Ads 为从数据库中取出来的数据,我这里用了10个班组记录作的例子。只需赋值就能够。                

参考网址:
http://hi.baidu.com/ishlzjpduibcuyd/item/8637d50e428d4ceb359902b7

  http://m.blog.csdn.net/blog/huguoqun/9332177

          http://www.cnblogs.com/koolay/articles/1398110.html数据库

相关文章
相关标签/搜索