Hi Paul
try the following
Printtofile:=True, PrToFileName:="D:\temp\tester.pdf"
Sub print_selected_pdf ()
Dim Printer_name as string
Dim outputfile as string
outputfile="C:\temp\test.pdf"
Printer_name = "Acrobat Distiller auf Ne04:" 'change
this according to your system
ActiveWindow.SelectedSheets.PrintOut Copies:=1,
ActivePrinter:=printer_name,Printtofile:=True, PrToFileName:=outputfile
end sub
you may have to disable some options within the properties for your
Adobe Acrobat printer. Goto 'File - Print'. Choose the properties of
the Adobe Distiller printer. uncheck 'Send fonts to Distiller' and 'Ask
for filename' (Note: These options may have a different name as I use
the German Adobe 5.0 version). Experment a little bit

Frank