C
cj
In windows explorer if I select a group of pdfs, right click and select
print, the files are printed. I notice it launches Acrobat Reader but
it never asks me anything just prints them.
How can I from within a VB program achieve similar functionality. Say
if I get the directory info on the files I want printed as part of the
vb program and then how do I go about having it print them?
DirInfo = New System.IO.DirectoryInfo(myDir)
FileInfo = DirInfo.GetFiles(mask)
For Each file As System.IO.FileInfo In FileInfo
*print the file
Next
print, the files are printed. I notice it launches Acrobat Reader but
it never asks me anything just prints them.
How can I from within a VB program achieve similar functionality. Say
if I get the directory info on the files I want printed as part of the
vb program and then how do I go about having it print them?
DirInfo = New System.IO.DirectoryInfo(myDir)
FileInfo = DirInfo.GetFiles(mask)
For Each file As System.IO.FileInfo In FileInfo
*print the file
Next