Word Macro to Count the number of documents and Pages Printed - Geeks to Go Forums

Jump to content

Log in Register Register Malware removal guide How it works

Word Macro to Count the number of documents and Pages Printed

#1 Hanaan Ashraf

  • Group: Member
  • Posts: 1
  • Joined: 22-October 11

Posted 22 October 2011 - 01:07 PM

Hi Guys,

I have a macro that prints all documents that are found in a directory, is was thinking that it should be possible to modify this macro to count both the number of documents as well as the pages that are printed, and display the count once the documents are sent for printing.

The Code:
Start of Code:
Sub ListDocNamesInFolder()
Dim sMyDir As String
Dim sDocName As String
sMyDir = "C:\My Documents\"
sDocName = Dir(sMyDir & "*.DOC")

While sDocName <> ""
Application.PrintOut FileName: = sDocName
sDocName = Dir()
Wend
End Sub
End of Code

would Appreciate some help with this, Thanks...

Share this topic: