Returns the barcode picture.
Read-write property
Visual Basic |
---|
Public Property MakeBarcodeDIB As Long |
A long value which represents the barcode picture.
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.
Dim Temp As Long
Temp = BarcodeXpress1.MakeBarcodeDIB;
If (Temp != 0) Then
{
ImagXpress.hDib = Temp;
}