| |
OverAtTheBar
Posts: 12
Score: 0
Joined: 11/2/2004
From:
Status: offline
|
Personally I don't know if VBscript has the ability to send directly to a printer. But as a way around that method, you can create a text file and use the VBscript to open the text file in someting like notepad with the /p switch to trigger a print. filetoprint = "c:\test.txt" Set WshShell = WScript.CreateObject( "WScript.Shell" ) WshShell.run "c:\winnt\notepad.exe /p " & filetoprint You know where to find me, Corey F.
|
|