paper size
I have seen the sample script in your site counting how many pages printed. i also want to know what is the paper size? is it possible?
chris ian fiel
chris ian fiel
30th Oct 2007
30th Oct 2007
Chris,
Try this script:
' Log print details to file
Dim oFSO
Dim oTS
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oTS = oFSO.OpenTextFile("C:\Print-log.csv", 8, true)
oTS.WriteLine DocumentName & "," & UserName & "," & TotalPages & "," & Date & "," & PaperSize
oTS.Close
Tony Edgecombe
30th Oct 2007
30th Oct 2007