I’m looking for some code to test if abode pdf distiller is installed. We are writing an application that has 3 print options …
print to paper
print preview
print to pdf
… and I want to grey out the ‘print to pdf’ if distiller is not installed.
In the past I have used code like
Dim myPDF As pdfDistiller Set myPDF = New pdfDistiller myPDF.FileToPDF vFileName & ".ps", _ vFileName & ".pdf", ""
but this only works if I have checked the reference to the distiller. Obviously, on machines without distiller installed, this code will not even compile. Which brings me back to some code to test if distiller is installed – then I can give the user the ‘print to pdf’ option and execute the code above.