• 締切済み

wordマクロでの他文書参照

wordマクロで他文書のwordのページ数をカウントしたいのですがどのようにすれば良いでしょうか? マクロ文書のページ数は以下でできたのですが。。。 Sub Test() Dim msg As String With Selection msg = .Information(wdNumberOfPagesInDocument) End With MsgBox msg Test = msg End Sub

みんなの回答

noname#212058
noname#212058
回答No.1

他文書を開いてカウントすれば良いです。 Dim Doc As Document Set Doc = Documents.Open("D:\他文書.docx") Dim msg As String msg = Doc.Range.Information(wdNumberOfPagesInDocument) Doc.Close Set Doc = Nothing MsgBox msg

関連するQ&A

専門家に質問してみよう