温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#操作Word应用实例分析

发布时间:2021-12-03 09:45:39 来源:亿速云 阅读:166 作者:iii 栏目:编程语言

本篇内容主要讲解“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();  }  /**//// <summary>  /// 打开文档  ,C#操作Word实际应用实例/// </summary>  /// <param name="sender"></param>  /// <param name="e"></param>  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;  }  /**////  /// <summary>  /// 保存到数据库 ,C#操作Word实际应用实例 /// </summary>  /// <param name="sender"></param>  /// <param name="e"></param>  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);  }  /**//// <summary>  /// 插入到数据库,C#操作Word实际应用实例  /// </summary>  /// <param name="name">姓名</param>  /// <param name="age">年龄</param>  /// <param name="sex">性别</param>  /// <param name="address">住址</param>  /// <param name="post_no">邮编</param>  /// <param name="job_type">职业</param>  /// <param name="hosity">既往史</param>  /// <param name="NO">病案号</param>  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应用实例分析”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI