Accusoft BarcodeXpress v14.0 - Updated
AccusoftBarcodeXpress14 ActiveX DLL / BarcodeXpress Object / MakeBarcodeDIB64 Property
In This Topic
    MakeBarcodeDIB64 Property
    In This Topic
    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