Re: Image Control removes everything after "key=" in Dropbox url.
Hello SongYe
Thanks for your suggestion. The goal of the app is to remove the need to manually make and save each QR code image.
Here is the code I'm having the problem with. Paste this code into the "Image" property of an Image control. I have try this with 2 different API's quickchart.io and chart.googleapis.com.
Using quickchart.io (include the quotes)
"https://quickchart.io/qr?text=" & TextInput1.Text & "&size=" & Image1.Width & "&margin=1" & "&ecLevel=L" & "&format=svg"
Using chart.googleapis.com (include the quotes):
"https://chart.googleapis.com/chart?cht=qr"& "&chl=" & TextInput1.Text & "&chs=" & Image1.Width & "&chld=L"
The image control will display the QR code, but when it is converted back to text the information after "key" is removed.

BUT, I think I have found a solution :-)! Instead of using an Image control use a HtmlText control. Here is the code I have tested. This displays the QR code and when it is converted back to text the text information after"key" is also displayed. Paste this code into the "HtmlText" property of a HtmlText control.
Using quickchart.io (include the quotes)
"<img class='img-example' src='" & "https://quickchart.io/qr?text=" & TextInput1.Text & "&size=" & HtmlText1.Height & "&margin=1" & "&ecLevel=L" & "&format=svg" & "'>"
Using chart.googleapis.com (include the quotes)
"<img class='img-example' src='" & "https://chart.googleapis.com/chart?cht=qr"& "&chl=" & TextInput1.Text & "&chs=" & Image1.Width & "&chld=L" & "'>"
