support
data matrix barcode data matrix barcode
data matrix barcode
Price: US$129
PDF417 crUFLBcs.dll download


If you download and install the demo of Barcodesoft Data Matrix font on your
computer, you will find crUFLBCS.dll from
"C:\Program Files\Common Files\Barcodesoft\Fontutil\" folder.

crUFLBCS.dll is a COM object with IDataMatrix interface.
You can find the detailed information about this interface from readme.html.

To call the method of this interface, you can use either Late Binding or Early Binding.
Late binding is used when type information of an object is unavailable at compile time.
Early binding requires the client to get access to the type library before compile.



Late Binding



Open LateBindingSample.frm with Visual Basic from
C:\Program Files\Barcodesoft\datamatrixfont\ folder.

Dim cruflBCSObj As Object
Set cruflBCSObj = CreateObject("cruflBCS.DataMatrix.1")
cruflBCSObj.SetCRLF (1)
Dim retval As String
retval = cruflBCSObj.Encode(strTemp, "0")


Now, apply font typeface BCSDataMatrix to returned string "retval". You will see Data Matrix barcode.





Early Binding



Open EarlyBindingSample.frm with Visual Basic from the following folder
C:\Program Files\Barcodesoft\datamatrixfont\.
Click Project menu, choose References item to load the type information of crUFLBCS.dll.

data matrix add reference in vb


2. Use the following code snippet to print barcode from Visual Basic.

data matrix vb
Dim obj As cruflBCS.CBCSDataMatrix
Set obj = New cruflBCS.CBCSDataMatrix
datamatrix = obj.Encode(strToEncode)
Set obj = Nothing


For more information about Data Matrix barcode, please click Data Matrix.