int WINAPI ErrorMess2D(LPINT error, LPSTR mess);
Returns in the mess string the text description of the error message associated with an error value of error.
Where error is a pointer to an integer containing the error value returned in the BARCODE2D structure after a call to create a barcode image
Mess is a pointer to a string that will receive the error message. This string must exist and be at least 24 characters long prior to the call
The call may be made from Visual Basic or Visual Basic for Applications, in which case the following Basic declaration will be required in the calling program:
Private Declare Function ErrorMess2D Lib "Dls2d4" (ByRef er As Long, ByVal mes$) As Long
More: