Output MS Publisher to PRN files
I needed a method to programatically check a series of directories for .pub and save as .prn for later batch processing to .pdf through Distiller. There were hundreds, and I just couldn't make myself do it by hand... After a little Googling, I found some useful code snippets from MS, and Google groups.    Comments and credits were left intact in the functions I borrowed, as well as my own. Hope someone finds this as useful as I did.   Option Explicit  Function GetFiles(strPath As String, _                    dctDict As Scripting.Dictionary, _                    Optional blnRecursive As Boolean) As Boolean                      ' This procedure returns all the files in a directory into       ' a Dictionary object. If called recursively, it also returns       ' all files in subfolders.           Dim fsoSysObj      As Scripting.FileSystemObject       Dim fdrFolder      As Scripting.Folder       Dim fdrSubFolder   As Scripting.Folder       Dim filFile        As Scripting.Fil...