本文主要是介绍.NET 使用书签如何对Word模板进行操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 建立一个word;2. 设置标签;
3. 另存为Word2003/2007模板;
4. 把模板添加到项目中去;
5. 添加引用;
6. 在后台添加引用;
7. 代码实现.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Office.Interop.Word;
using System.IO;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
/*=================================================*/
Microsoft.Office.Interop.Word.Document doc;
Microsoft.Office.Interop.Word.Application app;
private static string TemplateFile1 = System.Windows.Forms.Application.StartupPath + "..\\..\\..\\MyNodel\\申请表.dot";
string Imagefile = "";
/*=================================================*/
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog myopen = new OpenFileDia
这篇关于.NET 使用书签如何对Word模板进行操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!