html - C# - Place generated QR code on Windows Form Application -
i'm working c# windows form application, , want place pre-generated qr code onto form take user website on form in 'picturebox' or similar. having used website generate qr code, has given me unique barcode image , piece of code looks this:
<script type="text/javascript" src="http://www.qrjumps.com/script/embed.js"></script> <script type="text/javascript"> tracker('8713921'); </script>
this html reference javascript on other side of source link. possible include somewhere in code c# application? have never used these particular languages before.
if can't done in type of application, there alternative way qr code onto c# windows form work in same way?
thanks in advance,
mark
just save image:
now can add image winforms application.
bitmap image = new bitmap(@"myimagepath", true); // make picturebox , add picturebox1.image = image;
this easiest possibility.
Comments
Post a Comment