Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Add Barcode in Report | Microsoft Access
Barcode in Report.vb:
VB
' 1. Add reference to "Bytescout Barcode SDK" ActiveX object to your database project (in menu Tools->References). ' 2. Put Picture object on the Details section of the report. ' 3. Handle the Format event of the Details section and set barcode image to the Picture control. Option Compare Database Dim BarCodeGenerator Private Sub Report_Open(Cancel As Integer) ' Setup the barcode generator Set BarCodeGenerator = CreateObject("Bytescout.BarCode.Barcode") BarCodeGenerator.RegistrationName = "demo" BarCodeGenerator.RegistrationKey = "demo" BarCodeGenerator.Symbology = 16 ' QRCode End Sub Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) ' Set barcode value BarCodeGenerator.Value = Me.Field1 ' Set generated barcode image to Picture object Me.BarcodeImage.PictureData = BarCodeGenerator.GetImageBytesPNG() End Sub Private Sub Report_Close() ' Cleanup Set BarCodeGenerator = Nothing End Sub