A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

写代码之前,需要引用对应的DLL文件:
1、Interop.Microsoft.Office.Interop.Word.dll  (网上可以下载)
2、mscorlib.dll  (添加引用--->.NET中即可找到)
  1. using Microsoft.Office.Interop.Word;
  2. using MSWord = Microsoft.Office.Interop.Word;
  3. using System.Reflection;

  4. private void button1_Click(object sender, System.EventArgs e)
  5. {
  6.             //Word文档保护密码
  7.             string Pass = "ITIS@997168";
  8.             object PassWord = Pass;
  9.             MSWord.Application wordApp;  //Word应用程序变量
  10.             MSWord.Document wordDoc;    //Word文档变量
  11.             try
  12.             {
  13.                 object Nothing = Missing.Value;  //初始化
  14.                 wordApp = new MSWord.ApplicationClass();

  15.                 // 打开已存在的Word
  16.                 object FileName = @"E:\archive\CMPLatest_2117_230614-1053.Rtf";
  17.                 object readOnly = false;
  18.                 object isVisible = true;
  19.                 object objFalse = false;

  20.                 wordDoc = wordApp.Documents.Open(ref FileName, ref Nothing, ref readOnly, ref Nothing, ref PassWord, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref isVisible, ref Nothing, ref Nothing, ref Nothing, ref Nothing);

  21.                 //激活Word文档
  22.                 wordDoc.Activate();
  23.                 //判断是否有密码
  24.                 if (wordDoc.HasPassword)
  25.                 {
  26.                     wordDoc.Password = null;
  27.                 }

  28.                 //检查是否为Word文档设置保护功能,没有设置保护功能,就解除密码保护
  29.                 if (wordDoc.ProtectionType != WdProtectionType.wdNoProtection)
  30.                 {
  31.                     wordDoc.Unprotect(ref PassWord);
  32.                 }

  33.                 //跳转到指定书签
  34.                 object toMark = MSWord.WdGoToItem.wdGoToBookmark;
  35.                 //分页符
  36.                 object oPageBreak = Microsoft.Office.Interop.Word.WdBreakType.wdPageBreak;  

  37.                 //定义书签名称  PartB
  38.                 object BookMarkName_b = "bmf_b";
  39.                 wordDoc.ActiveWindow.Selection.GoTo(ref toMark, ref Nothing, ref Nothing, ref BookMarkName_b);
  40.                 //插入分页符
  41.                 wordDoc.ActiveWindow.Selection.InsertBreak(ref oPageBreak);
  42.                
  43.                 //定义书签名称  PartC1
  44.                 object BookMarkName_c1 = "bmf_c1";
  45.                 wordDoc.ActiveWindow.Selection.GoTo(ref toMark, ref Nothing, ref Nothing, ref BookMarkName_c1);
  46.                 //插入分页符
  47.                 wordDoc.ActiveWindow.Selection.InsertBreak(ref oPageBreak);

  48.                 //定义书签名称  PartC2
  49.                 object BookMarkName_c2 = "bmf_c2";
  50.                 wordDoc.ActiveWindow.Selection.GoTo(ref toMark, ref Nothing, ref Nothing, ref BookMarkName_c2);
  51.                 //插入分页符
  52.                 wordDoc.ActiveWindow.Selection.InsertBreak(ref oPageBreak);

  53.                 //对Word文档进行加密保护
  54.                 if(PassWord.ToString() != null)
  55.                 {
  56.                     wordDoc.Protect(WdProtectionType.wdAllowOnlyReading, ref objFalse, ref PassWord, ref Nothing, ref Nothing);
  57.                 }
  58.                

  59.                 //将插入分页符后的Word文档保存一下
  60.                 wordDoc.SaveAs(ref FileName, ref Nothing, ref Nothing, ref Nothing, ref objFalse, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref isVisible, ref Nothing, ref Nothing, ref Nothing, ref Nothing);

  61.                 //标记为最终状态,禁止弹出对话框
  62.                 //wordApp.DisplayAlerts = WdAlertLevel.wdAlertsNone;
  63.                 //标记为最终状态
  64.                 //wordDoc.Final = true;

  65.                 //关闭Word文档
  66.                 wordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
  67.                 wordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
  68.             }
  69.             catch(Exception ex)
  70.             {
  71.                
  72.             }
  73. }
复制代码



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马