I have code to file a report as pdf, basically it's:
DoCmd.OpenReport "File Temp", acViewPreview, , "[ID] = " & Me.[ID]
DoCmd.OutputTo acOutputReport, "File Temp", acFormatPDF, strPath + strMyName, False
DoCmd.Close acReport, "File Temp"
and it works great... gets the report where it needs to go, makes a folder if there isn't one (there's a little more code than I posted above).
But the problem is in the above code... I need it to file as a PDF.. I know acFormatPDF is what that means. However, when you go into the file, you must click the report (and yes, it says pdf file as its file type), choose open with-Adobe, and only then will it open as a "legit PDF". Is it possible that when it goes to file it is saved as an adobe pdf?
Thanks,
alyon