Using PDF417 Encoder with Visual Basic
The engine of the PDF417 encoding lies in this ActiveX dll, PDF417FontEncoder.dll, which is usually located under program files\morovia\PDF417fontware folder. It is a self-registered ActiveX component. To register the component, just runt the command under DOS prompt:
Regsvr32 PDF417FontEncoder.dll
This DLL also exposes Windows DLL interface so you can treat it as a normal Windows DLL if you are more familiar with programming with DLL interface. Features of Morovia PDF417 Encoder ActiveX:
DLL Name: PDF417FontEncoder.dll
Prog ID: Morovia.PDF417FontEncoder
Properties: PDFMaxCols, PDFMaxRows, PDFSecurityLevel, PDFTruncatedSymbol, LineFeedString
Methods: Encode
Using PDF417 Encoder with Visual Basic
Dim encoder As Object
Dim output As String
Set encoder = CreateObject("Morovia.PDF417FontEncoder")
output = encoder.Encode(DataToEncode)
|