Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoI think that the issue has to do with this part
& "\" alt=\"Scan to add a ticket\" title=\"Scan to add a ticket\"/>"
try getting it to work without that line or else just ending with
& ">"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
& "\" alt=\"Scan to add a ticket\" title=\"Scan to add a ticket\"/>"
try getting it to work without that line or else just ending with
& ">"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- NirajShah45 years agoQrew CadetThanks, Mark.
When I do that, the code is accepted, however no QR code image appears. My code is below and my image is attached
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl=" & URLEncode(URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Niraj Shah
------------------------------- MarkShnier__You5 years ago
Qrew Legend
try this
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- NirajShah45 years agoQrew CadetI tried your version of the code and I get a syntax error due to the extra parentheses after the: ([Order - Expected Inventory Record ID#])) &
I removed the extra parentheses and the syntax was accepted but the QR code image still shows up as a broken image link.
Updated syntax:
"<img src=\"http://chart.apis.google.com/chart?chs=75x75&cht=qr&chld=|0&chl="
& URLEncode (URLRoot() & "db/" & [_DBID_INVENTORY_PRODUCTS] & "?a=API_GenAddRecordForm&_fid_8=" &URLEncode ([Order - Expected Inventory Record ID#])) &
"&_fid_12=" &URLEncode([Product Name]) &
"&_fid_6=" &Now() &
"&z=" & Rurl()
& "/>"
------------------------------
Niraj Shah
------------------------------