AngelRodriguez
5 years agoQrew Assistant Captain
Markup code printing on PDF documents
I added a URL field to my database that passes several fields to a PDF document, but for some reason, I noticed that before any lowercase character "s", I'm getting a TM printout. I never added the markup code "&Trade;" to the document. Users simply fill out a field named "resolution", and it gets passed to the PDF document into a field named "Document troubleshooting, cause, "resolution" (text multi-line). I tried opening the document in Adobe Reader and Foxit Reader as well, and I'm getting the same result. Does anyone know why the symbol TM would print onto the document when rendering the PDF if there's no markup for TM added to the document?
Here's the code I used to pass the data to the PDF:
------------------------------
AR
------------------------------
Here's the code I used to pass the data to the PDF:
"javascript: var wnd=window.open('https://www.quickbaseutilities1.com/XXXXX_XXXX/PDF Stamper/Default.aspx?"
& "XXXXX"
& "&appid=" & AppID()
& "&msdb=" & Dbid()
& "&msid=" &[Record ID#]
& "&tpdbid=" & [_DBID_DOCUMENT_TEMPLATES]
& "&tpid=1"
& "&faid=241"
& "&XXXXXX"
& "&fn=Stamped Document"
& "&pdfdte=240"
& "&rsfid=29"
& "&fill=Y"
& "&fillfid=32"
& "&fillout=n"
&"','copy','top=40,left=320,width=730,location=no,menubar=no,toolbar=no,status=yes');\n\nvar id=setInterval(function() {if (wnd.closed) {clearInterval(id);location.reload(true);}},1000);void(0);"
------------------------------
AR
------------------------------