Hi everyone,

I have the following code in a class module:

Option Explicit
 
Public WithEvents odist As PdfDistiller
 
Private Sub Class_Initialize()
    Set odist = New PdfDistiller
End Sub
I checked my references list and it appears I do not (or no longer) have Adobe PDF Distiller. Is there an alternative I can use? If so, does it require reworking of the code or can I just replace?

Thanks!!