Apr 28, 2005 #1 kerbaule IS-IT--Management Dec 29, 2003 24 FR Bonjour, I need to print excel files in batch or schedule job using a script or vbscript ? Cab somebdy help me ? I don't know vbscript ... many thanks Regards Elisabeth
Bonjour, I need to print excel files in batch or schedule job using a script or vbscript ? Cab somebdy help me ? I don't know vbscript ... many thanks Regards Elisabeth
Apr 29, 2005 #2 johnnymagee Programmer Apr 19, 2005 26 GB set oexcel = new excel.application set osht = oexcel.workbooks.open("filename") oSht.Range("toprint").PrintOut Copies:=(x), Collate:=True where x is the number of copies This will print out a range on your default printer Upvote 0 Downvote
set oexcel = new excel.application set osht = oexcel.workbooks.open("filename") oSht.Range("toprint").PrintOut Copies:=(x), Collate:=True where x is the number of copies This will print out a range on your default printer