QR Code In MS Access (1 Viewer)

nector

Member
Local time
Today, 20:53
Joined
Jan 21, 2020
Messages
465
Hi

I'm trying to implement a QR Code with VBA in Access sales invoice, this is done by reference a URL received through Json from the virtual server and then stored in my BE in the same line for the sales invoice and date such that if I pull the invoice, it will also show the URL received from the server.

Now on the invoice form I put a control called Me.txtQrCodeInv to reference the URL and the call the module when loading the invoice, quite okay I'm able to see the QR Code when printing the invoice but when I try to scan it, it does not point me to the correct site. Please take note this is not my code I got it on the internet, any idea how to fix it will highly appreciated.


VBA Call QR Code library

Code:
Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer)
Dim Result As Boolean
Result = CaAutomation_NatG_QRCode_DEMO(Me.txtQrCodeInv, [Report], 20, 300, 0, -1, 0)
End Sub
 

Attachments

Users who are viewing this thread

Back
Top Bottom