Hi
I am trying to convert documents from word to pdf using vba
I have adobe acrobat and a pdf printer installed and can manually click on convert to pdf which works fine. I just want to be able to automate the process for several documents.
Here is an attempt which needs some work
Dim pd As AdobePDFMakerForOffice.PDFMaker
Dim dc As Object
Set dc = GetObject("C:\mydoc.Doc")
With d
dc.CreatePDF
End With