|
Example
ASP:
<%
Set Obj = Server.CreateObject("nonnoi_ASPBarcode.ASPBarcode")
Obj.ImageTypeStr = "JPG"
Obj.BarcodeType = 14
Obj.Height = 50
Obj.Data = "1234567890"
Obj.ShowText = True
Obj.ShowBarcode
set Obj = nothing
%>
PHP:
<?php
// starting object
$Obj = new COM("nonnoi_ASPBarcode.ASPBarcode") or die("Unable to load ASPBarcode");
$Obj->Visible = 1;
$Obj->ImageTypeStr = "JPG"; // or use Obj.ImageType = 1
$Obj->BarcodeType = 14;
$Obj->Height = 50;
$Obj->Data = "1234567890";
$Obj->ShowText = True;
$Obj->ShowBarcode;
//free the object
$Obj = null;
?>
ASP (Registered User):
<%
Set Obj = Server.CreateObject("nonnoi_ASPBarcode.ASPBarcode")
Obj.ImageTypeStr = "PNG"
Obj.BarcodeType = 14
Obj.Height = 50
Obj.Data = "1234567890"
Obj.ShowText = True
Obj.RegisterName = "Nonnoi"
Obj.RegisterKey = "0123456-789"
Obj.ShowBarcode
set Obj = nothing
%>
|