如何C#操作word模板生成word文档并打开?

本人用C#操作word模板并在书签处插入数据,然后生成word文档并打开,本人参考了delphi代码,但以下几句不知道用C#怎么写,请教高人指点:delphi代码如下:m... 本人用C#操作word模板并在书签处插入数据,然后生成word文档并打开,本人参考了delphi代码,但以下几句不知道用C#怎么写,请教高人指点:
delphi代码如下:
m_WordApp.WindowState := wdWindowStateMaximize;
m_WordApp.Visible := true;
{m_WordDoc.PrintOut;
m_WordDoc.Disconnect;
m_WordApp.Disconnect;
m_WordDoc.Free;
m_wordApp.Free;}
最后四行好像是断开word相关链接的语句,用C#怎么断开,谢谢
展开
 我来答
Lim
2010-08-07 · 知道合伙人软件行家
Lim
知道合伙人软件行家
采纳数:152 获赞数:1014
资深研发工程师,敏捷教练ScrumMaster

向TA提问 私信TA
展开全部
codeproject上有很多操作word的C#代码:
顺便给你几个链接:

http://www.codeproject.com/KB/office/Word_Automation.aspx
http://www.codeproject.com/KB/office/Word2007Automation.aspx
http://www.codeproject.com/KB/office/csautomateword.aspx

private void met_word_automation()
{
try
{
// Declaring the object variables we will need later
object varFileName = "c:\temp\doc.docx";
object varFalseValue = false;
object varTrueValue = true;
object varMissing = Type.Missing;
string varText;

// Create a reference to Microsoft Word application
Microsoft.Office.Interop.Word.Application varWord =
new Microsoft.Office.Interop.Word.Application();
// Creates a reference to a Word document
Microsoft.Office.Interop.Word.Document varDoc =
varWord.Documents.Open(ref varFileName, ref varMissing,
ref varFalseValue,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing);
// Activate the document
varDoc.Activate();
// Change the 1st sentence of the document
varText = "Altered sentence nr. 1";
varDoc.Sentences[0].Text = varText;
// Change the 3rd sentence of the document
varText = "Altered sentence nr. 3";
varDoc.Sentences[2].Text = varText;
// Save the document
varDoc.Save();
// Show the Microsoft Word window with our document on it
varWord.Visible = true;
// Call the print dialog in Word
Microsoft.Office.Interop.Word.Dialog varDlg =
varWord.Application.Dialogs[
Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFilePrint];
varDlg.Show(ref varMissing);
// Print the document
varDoc.PrintOut(ref varTrueValue, ref varFalseValue, ref varMissing,
ref varMissing, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varFalseValue, ref varMissing, ref varMissing,
ref varMissing, ref varMissing, ref varMissing, ref varMissing,
ref varMissing);
// Send mail with this document as an attachment
varDoc.SendMail();
}
catch (Exception varE)
{
MessageBox.Show("Error:\n" + varE.Message, "Error message");
}
}
You need to create references to this .NET namespace in order to use the above code:

Microsoft.Office.Interop.Word
博思aippt
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT... 点击进入详情页
本回答由博思aippt提供
leon382
2010-08-07 · TA获得超过1064个赞
知道小有建树答主
回答量:1744
采纳率:0%
帮助的人:988万
展开全部
用 Openxml SDK 2.0操作word 看看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式