Accusoft BarcodeXpress v13.9 - Updated
MakeBarcodeDIB Property
AccusoftBarcodeXpress13 ActiveX DLL > BarcodeXpress Object : MakeBarcodeDIB Property
Description
Returns the barcode Device Independent Bitmap for 32-bit environment.
Property type
Read-write property
Syntax
Visual Basic
Public Property MakeBarcodeDIB As Long
Return Type
A long value which represents the barcode picture.
Remarks
The MakeBarcodeDIB property can only be read once per created barcode. Subsequent reads will return a 0. If you want to keep the hDIB around after the initial query, first load it into a temporary variable.
Example
VB6
Copy Code
Dim Temp As Long
Temp = BarcodeXpress1.MakeBarcodeDIB;

If (Temp != 0) Then
{
     ImagXpress.hDib = Temp;
}
See Also

BarcodeXpress Object  | BarcodeXpress Members

Is this page helpful?
Yes No
Thanks for your feedback.