如何激活Word文档?

发布于 2024-10-14 23:55:27 字数 715 浏览 3 评论 0原文

我正在从 C# Windows 应用程序创建 Word 文档。但即使我使用 Activate() 方法激活文档,Word 文档仍被最小化。

(调试时工作正常,但在发布版本文档中被最小化)

我如何使文档处于活动状态???

提前致谢。

我的代码几乎是这样的

Microsoft.Office.Interop.Word.Document 文档;

对象 objFileName = 文件位置; 对象 objTrueValue = true;目的 objMissing = Type.Missing;

文档= application.Documents.Open(参考 objFileName, ref objMissing, ref obj真实值, 参考 objMissing,参考 objMissing,参考 objMissing,参考 objMissing,参考objMissing, 参考 objMissing,参考 objMissing,参考 objMissing,参考 objMissing,参考objMissing, 引用 objMissing,引用 objMissing,引用 objMissing);

文档.Activate();

I am creating word document from c# windows application. but Word document is getting minimized even though i used the Activate() method to activate the document.

(it is working fine when debugging but in release version document getting minimized)

How I Can Make the document active one???

Thanks in advance.

my code is almost like this

Microsoft.Office.Interop.Word.Document
document;

object objFileName = locationOfFile;
object objTrueValue = true; object
objMissing = Type.Missing;

document =
application.Documents.Open(ref
objFileName, ref objMissing, ref
objTrueValue,
ref objMissing, ref objMissing, ref objMissing, ref
objMissing, ref objMissing,
ref objMissing, ref objMissing, ref objMissing, ref
objMissing, ref objMissing,
ref objMissing, ref objMissing, ref objMissing);

document.Activate();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

揽清风入怀 2024-10-21 23:55:27

它对双方都有效。

document = application.Documents.Open(@"\Docu.docx", ReadOnly: false, Visible: true );

设置 Visible:true, Document.Activate();不是必需的。

如果您展示您的代码将会有更多帮助。

It is working for both.

document = application.Documents.Open(@"\Docu.docx", ReadOnly: false, Visible: true );

set the Visible:true, Document.Activate(); is not required.

It would be help more if you show your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文