How to obtain number of pages in word document with VBA? tnx
J Jonathan West Aug 19, 2004 #2 mike said: How to obtain number of pages in word document with VBA? tnx Click to expand... Determine the number of pages in a document http://word.mvps.org/FAQs/MacrosVBA/GetNumPages.htm
mike said: How to obtain number of pages in word document with VBA? tnx Click to expand... Determine the number of pages in a document http://word.mvps.org/FAQs/MacrosVBA/GetNumPages.htm
H Helmut Weber Aug 19, 2004 #3 Hi Mike, With ActiveDocument MsgBox .Range.Information(wdNumberOfPagesInDocument) MsgBox .BuiltInDocumentProperties("Number of Pages") End With
Hi Mike, With ActiveDocument MsgBox .Range.Information(wdNumberOfPagesInDocument) MsgBox .BuiltInDocumentProperties("Number of Pages") End With