how to generate QR code using vb6.0.
if user enter numeric or alphabatic string or other value then qr code should be generate using vb6.0.
how to generate QR code using vb6.0.
if user enter numeric or alphabatic string or other value then qr code should be generate using vb6.0.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Srinivasan RamamoorthiPosted Oct 2, 2021, 12:34 PM
Bhavesh VankarPosted Oct 2, 2021, 9:17 AM
Sachin SinghPosted Oct 2, 2021, 8:06 AM
For QRCode follow this
step 1.
Click project----> Manage NuGet Packages--->Browse Zen Barcode Framework---->Download and install Zen Barcode FrameWork
step 2.
Private Sub button2_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim qrcode As Zen.Barcode.CodeQrBarcodeDraw = Zen.Barcode.BarcodeDrawFactory.CodeQr
pictureBox1.Image = qrcode.Draw(textBox2.Text, 50)
End Sub
Srinivasan RamamoorthiPosted Oct 2, 2021, 7:41 AM
Bhavesh VankarPosted Oct 2, 2021, 7:35 AM
Srinivasan RamamoorthiPosted Oct 2, 2021, 7:32 AM
Bhavesh VankarPosted Oct 2, 2021, 7:28 AM
sir i need qr code generator using vb6.0
can i use it in VB6.0 because i tried to find ActiveX control for QR Code for Vb6.0 but still not getting it.
Bhavesh VankarPosted Oct 2, 2021, 6:52 AM
sir i have already refer this. but its for .net and i looking for VB6.0
this code can work in my VB6.0 technology. and it is for web in your example link
it showing me error while i registere its dll QRcode.dll was not registrable as an ActiveX component
Sachin SinghPosted Oct 2, 2021, 6:49 AM