Accusoft BarcodeXpress v13.9 - Updated
MakeBarcodeDIB64 Property
AccusoftBarcodeXpress13 ActiveX DLL > BarcodeXpress Object : MakeBarcodeDIB64 Property
Description
Returns the barcode Device Independent Bitmap for 64-bit environment.
Property type
Read-write property
Syntax
Visual Basic
Public Property MakeBarcodeDIB64 As __int64
Return Type
An __int64  which represents the barcode picture.
Remarks
The MakeBarcodeDIB64 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 Temp64 As __int64
Temp64 = BarcodeXpress1.MakeBarcodeDIB64;

If (Temp64 != 0) Then
{
     ImagXpress.hDib64 = Temp64;
}
See Also

BarcodeXpress Object  | BarcodeXpress Members

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