资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

C#操作Word应用实例分析

本篇内容主要讲解“C#操作Word应用实例分析”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#操作Word应用实例分析”吧!

创新互联公司专注于横县企业网站建设,成都响应式网站建设,购物商城网站建设。横县网站建设公司,为横县等地区提供建站服务。全流程按需求定制开发,专业设计,全程项目跟踪,创新互联公司专业和态度为您提供的服务

C#操作Word实际应用实例:课程是关于电子病历的,内容就是用word 做模板,医生在模板中输入病人的病症,输入完毕后就会把输入的内容存放到数据库。而不是将整个word保存入数据库。当需要打印时就会把数据从数据库中选择出来自动放到模板中的原来位置 而形成完整的电子病历。完成这个工作用的类是office中的word引用,是一个COM类库。

注意:我用模板是一个经过处理的word文档,用书签来进行定位。下面就放一些实现用到的源代码:

C#操作Word实际应用实例用到的引用:

using System;  using System.Collections.Generic;  using System.ComponentModel;  using System.Data;  using System.Drawing;  using System.Text;  using System.Windows.Forms;  using Word;  using System.IO;  using System.Reflection;  using System.Data.OleDb;

C#操作Word实际应用实例内容代码:

namespace blmb  ...{  public partial class Form1 : Form  ...{  Word.Application appword = new Word.Application();  Word.Document docword = new Document();  string pathfile = System.AppDomain.CurrentDomain.  SetupInformation.ApplicationBase;//应用程序的路径  object missing = System.Reflection.Missing.Value;  public Form1()  ...{  InitializeComponent();  }  /**////   /// 打开文档  ,C#操作Word实际应用实例///   ///   ///   private void 打开openToolStripMenuItem1_Click(  object sender, EventArgs e)  ...{  string path = pathfile + @"fill.doc";  string temp_path = pathfile + @"temp.doc";  File.Delete(temp_path);  File.Copy(path, temp_path);  webBrowser1.Navigate(temp_path);  saveToolStripMenuItem.Enabled = true;  }  /**////  ///   /// 保存到数据库 ,C#操作Word实际应用实例 ///   ///   ///   private void saveToolStripMenuItem_Click(  object sender, EventArgs e)  ...{  string temp_path = pathfile + @"temp.doc";  try ...{  appword.Visible = true;  object missing = System.Reflection.Missing.Value;  object Readonly = true;  object isvisible = true;  object filepath = (object)temp_path;  docword = null;  docword = appword.Documents.Open(ref filepath,   ref missing, ref Readonly, ref missing,   ref missing, ref missing, ref missing,   ref missing, ref missing, ref missing,   ref missing, ref isvisible, ref missing,   ref missing, ref missing, ref missing);  /**/////这是最关键的地方:对文档的所有书签进行便利匹配  object name_bm = "姓名";  string name = docword.Bookmarks.  get_Item(ref name_bm).Range.Text.Replace(" a"," ");  object age_bm = "年龄";  string age = docword.Bookmarks.  get_Item(ref age_bm).Range.Text.Replace(" a", " ");  object sex_bm = "性别";  string sex = docword.Bookmarks.  get_Item(ref sex_bm).Range.Text.Replace(" a", " ");  object address_bm = "家庭地址";  string address = docword.Bookmarks.  get_Item(ref address_bm).Range.Text.Replace(" a", " ");  object post_no_bm = "邮编";  string post_no = docword.Bookmarks.  get_Item(ref post_no_bm).Range.Text.Replace(" a", " ");  object job_bm = "职业";  string job = docword.Bookmarks.  get_Item(ref job_bm).Range.Text.Replace(" a", " ");  object host_bm = "既往史";  string host = docword.Bookmarks.  get_Item(ref host_bm).Range.Text.Replace(" a", " ");  object NO_bm = "病案号";  string NO = docword.Bookmarks.get_Item(ref NO_bm).  Range.Text.Replace(" a", " ");  insertData(name, age, sex, address, post_no, job, host, NO);  docword.Close(ref missing, ref missing, ref missing);  appword.Quit(ref missing, ref missing, ref missing);  }  catch ...{  MessageBox.Show("请输入病人信息!");  }  File.Delete(temp_path);  打开openToolStripMenuItem1_Click(sender, e);  }  /**////   /// 插入到数据库,C#操作Word实际应用实例  ///   /// 姓名  /// 年龄  /// 性别  /// 住址  /// 邮编  /// 职业  /// 既往史  /// 病案号  private void insertData(string name,string age,  string sex,string address,string post_no,  string job_type,string host,string NO)  ...{  string DB_path=pathfile+@"blmb.mdb";  string strCon = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + DB_path;  OleDbConnection con = new OleDbConnection(strCon);  OleDbCommand cmd = new OleDbCommand();  con.Open();  string insert_str = "insert into patient values ('"+name  +"','"+age+"','"+sex+"','"+address+"','"+  post_no+"','"+job_type+"','"+host+"','"+NO+"')";  cmd.CommandText = insert_str;  cmd.Connection = con;  cmd.ExecuteNonQuery();  con.Close();  }   private void button1_Click(object sender, EventArgs e)  ...{  if (textBox1.Text == "")  ...{  MessageBox.Show("病历号不可为空!");  }  else ...{  string DB_path = pathfile + @"blmb.mdb";  string strCon = @"Provider=Microsoft.Jet.OLEDB.4.0;  Data Source=" + DB_path;  OleDbConnection con = new OleDbConnection(strCon);  OleDbCommand cmd = new OleDbCommand();  con.Open();  string insert_str = "select * from patient   where num='"+textBox1.Text.Trim()+"'";  cmd.CommandText = insert_str;  cmd.Connection = con;  OleDbDataAdapter da = new OleDbDataAdapter(cmd);  DataSet ds = new DataSet();  da.Fill(ds, "temp");  con.Close();  ds.WriteXml(textBox1.Text+".xml");     try    ...{     string path = pathfile + @"fill.doc";     string temp_path = pathfile + textBox1.Text+".doc";     File.Delete(temp_path);     File.Copy(path, temp_path);     appword.Visible = true;     object missing = System.Reflection.Missing.Value;     object Readonly = false;     object isvisible = true;     object filepath = (object)temp_path;     docword = null;     docword = appword.Documents.Open(ref filepath,   ref missing, ref Readonly, ref missing, ref missing,   ref missing, ref missing, ref missing, ref missing,   ref missing, ref missing, ref isvisible, ref missing,   ref missing, ref missing, ref missing);     foreach(Word.Bookmark BM in docword .Bookmarks)   /**/////这是最关键的地方:对文档的所有书签进行便利匹配  ...{   switch(BM.Name.ToLower())   ...{    case "姓名":      BM.Select();     BM.Range.Text=ds.Tables["temp"].Rows[0][0].ToString();     break;    case "年龄":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][1].ToString();     break;     case "性别":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][2].ToString();     break;     case "家庭地址":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][3].ToString();     break;     case "邮编":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][4].ToString();     break;     case "职业":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][5].ToString();     break;     case "既往史":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][6].ToString();     break;     case "病案号":     BM.Select();     BM.Range.Text = ds.Tables["temp"].Rows[0][7].ToString();     break;   }   }     docword.Save();     docword.Close(ref missing,ref missing,ref missing);     appword.Quit(ref missing ,ref missing ,ref missing);     }     catch    ...{     }  }  }  private void Form1_Load(object sender, EventArgs e)  ...{   }  //C#操作Word实际应用实例}  }

到此,相信大家对“C#操作Word应用实例分析”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!


名称栏目:C#操作Word应用实例分析
转载源于:http://cdkjz.cn/article/ispood.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220