In the past, I have used your DataMatrix font encoder in a VBScript/ASP environment on an IIS5 webserver to encode text data for formatting using your DataMatrix font.
My code looked like:
Set dm = Server.CreateObject("Morovia.DataMatrixFontEncoder")
dm.DataMatrixTargetSizeID=2
strBCDM = dm.Encode(strBarcodeText)
Set dm = Nothing
strBarcodeText is the source text
strBCDM is the encoded text that I would then print (using my own printing routines) with the truetype font.
This was with verson 3.33 of the DataMatrix Font Encoder.
Now, I want to do the same thing with a QRCode. I purchased a licence for version 5 of the QRCode Font Encoder software, but I can't find a reference to how I can use it this way.
All I need is to put in some text and get out a string that I can print using the QRCode font. Version 5 seems to be quite different from the DataMatrix version 3, as far as the COM Object goes.
Can you help?
