You can create the ActiveBarcode Control with Javascript (e.g., with the Internet Explorer) at run time
and use is non visual:
// Create the control: ab = new ActiveXObject("BARCODE.BarcodeCtrl.1");
// Set the barcode type and content: ab.text = "Example"; ab.typename = "Code 128";
// Save the barcode as image file: ab.SaveAsBySize("example.bmp", 400, 100);
// Example: Show the controls about box: ab.aboutbox();
|