You can use ActiveBarcode with VisualBasicScript (VBS, Windows Scripting Host) to create barcodes
in scripts automatically. Here we show you how simple is it to use ActiveBarcode in VBS.
First make the ActiveBarcode control avaiable in your sscript:
Dim barcode Set barcode = WScript.CreateObject("BARCODE.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 'SaveAs' method to save the barcode as an image file:
barcode.SaveAs("examplebarcode.png")
To learn more about this, please have a look at the VisualBasicScript application
'barcodeimage.wsf' that is included in the ActiveBarcode package.
You can use this source code for learning purposes or use it as a start for your own scripts.
|