How to use barcodes in VBScript (Windows Script Host)
1
You can use ActiveBarcode with VisualBasic-Script (VBS, Windows Script Host) to create barcodes in scripts automatically. This example shows how simple is it to use ActiveBarcode in VBS.
First make the ActiveBarcode control available in your script:
Dim barcode Set barcode = WScript.CreateObject("ACTIVEBARCODE.BarcodeCtrl.1")Now you can use the variable barcode to access the control.
Use the Properties of the control to create the barcode you want:
barcode.Typename = "Code128" barcode.Text = "123456789012"Then use the SaveAsBySize method to save the barcode in a specific size to an image file:
barcode.SaveAsBySize "beispielbarcode.png",400,200Click here to download the above example as a wsf-file.
2
A very detailed example for a VisualBasicScript application is the console application BarcodeImage:
- Open Source Project: BarcodeImage @ GitHub.
- Source code BarcodeImage.wsf.
- Download BarcodeImage.wsf.