| Posted: June 21 2006 at 11:14am | IP Logged
|
|
|
do you want to save the barcode image (JPEG, BMP ...) to the disk or save the barcode file (and load it later)? If you are looking for exporting the image to a disk file, use the ExportImage method. For the latter, see the documentation on the Save method.
Dim objBarcode
Set objBarcode = Server.CreateObject("Morovia.BarcodeActiveX")
...
objBarcode.ExportImage("c:\test.jpg", 1)
|