有没有人可以向我展示如何使用vb.net打开文档信息面板的示例。如果您想知道我所引用的文档面板,您可以查看截图:
How to Open the Document Information Panel in Microsoft Word 2010
到目前为止,这是我的代码:
Dim dialogBox As Word.Dialog = Globals.ThisAddIn.Application.Dialogs(Word.WdWordDialog.wdDialogFileSummaryInfo)
dialogBox.Show()
我设法打开它,但它似乎是错误的文档面板类型。
答案 0 :(得分:0)
试试这个
Dim oWord As Word.Application
Dim oDoc As Word.Document
oWord = CreateObject("Word.Application")
oWord.Visible = True
oDoc = oWord.Documents.Add
oWord.DisplayDocumentInformationPanel = True