I have a process (PB 12.5.2) which generates a PDF of tax forms and saves them to the database for viewing later.
The process is slow so I am looking for a method for generating the PDF entirely in-memory. I would then use UPDATEBLOB to save it in the database.
Any ideas?
I am currently testing out an ActiveX control I used in the past with Classic ASP. I load a blank PDF form into the control, write text strings to it, and then return the form into a blob variable. The whole process takes only 0.02 seconds. The only downside is you have to code a line to write each string to the form and figure out the coordinates.