NorwalkPhil
Programmer
I am creating a PDF from and viewing an Access report with this code:
vRptFile = "c:\MyReport.PDF"
DoCmd.OpenReport "MyReport",acViewPreview
DoCmd.OutputTo acOutputReport,"",acFormatPDF, vRptFile,True
This works fine. Now I want to stored the same report in an OLE Object field in a table (so it can be uploaded into an Oracle BLOB field). I've tried several different methods to no avail. How do I do this? (I sincerely appreciate your attention)
vRptFile = "c:\MyReport.PDF"
DoCmd.OpenReport "MyReport",acViewPreview
DoCmd.OutputTo acOutputReport,"",acFormatPDF, vRptFile,True
This works fine. Now I want to stored the same report in an OLE Object field in a table (so it can be uploaded into an Oracle BLOB field). I've tried several different methods to no avail. How do I do this? (I sincerely appreciate your attention)