Printing SNP files in Windows
April 26, 2006 10:51 AM   Subscribe

How can I print multiple MS Access Snapshot files (.SNP) in Windows 2000/XP at the same time?

I've tried to right-click after selecting all of them and clicking "Print", but it only prints the last file. I have to print a ton of these every day, so I'm looking for a trick or bit of software for doing this. Clicking "print" in Snapshot viewer for every one gets old.
posted by selfnoise to Computers & Internet (1 answer total)
 
set file=%1
if defined file "%CommonProgramFiles%\Microsoft Shared\Snapshot Viewer\SNAPVIEW.EXE" /p %file%

set file=%2
if defined file "%CommonProgramFiles%\Microsoft Shared\Snapshot Viewer\SNAPVIEW.EXE" /p %file%

set file=%3
if defined file "%CommonProgramFiles%\Microsoft Shared\Snapshot Viewer\SNAPVIEW.EXE" /p %file%


In a batch file then drag in a clump of .SNP files. It will bring up the print dialog multiple times, which might be better than what you're doing. That will do 3 files. Just paste the two lines again and incriment the "set file=" bit by one to do more.
posted by ed\26h at 1:21 AM on April 27, 2006


« Older How to dynamically update webpage   |   How old is Web 2.0? Newer »
This thread is closed to new comments.