BarCdt()

Returns the human readable form of the last barcode created.

Declared for C as

int WINAPI BarCdt(LPSTR szText)

where szText is a pointer to a string which returns with the human readable text – including any calculated check digit and barcode specific formatting – if the call is successful.

Note that clocked barcode types do not have a human readable form!

Return value is the length of szText, or 0 if an error occurred or if there is no human readable form.

Basic declaration

Private Declare Function BarCdt Lib "dlunif" (ByVal szText As String) As Long

 

More:

ErrorMess()