I am trying to produce a VPE maxicode 2d barcode. the VPE demo works previewing a maxicode barcode. I tried copying their VB code and translating it to DF, but cannot get this to work. Anyone have any suggetsions? All my code produces is a square black box where the label should b.

Here is the original VB code:
Code:
// * vb code *
Str = "[)>" + Chr(30) + "01" + Chr(29)
Str = Str + "9641464" + Chr(29)
Str = Str + "276" + Chr(29)
Str = Str + "068" + Chr(29)
Str = Str + "1Z51146547" + Chr(29)
Str = Str + "UPSN" + Chr(29)
Str = Str + "32630V" + Chr(29)
Str = Str + "327" + Chr(29) + Chr(29)
Str = Str + "1/1" + Chr(29)
Str = Str + "2" + Chr(29)
Str = Str + "N" + Chr(29) + Chr(29)
Str = Str + "NEUSS" + Chr(29) + Chr(30) + Chr(4)
Str = Str + "!!!!!!!!!!!!!!!!!!!!!!!!!!"
Bar2D.MaxiCode(2, 7.25, -3, -3, Str)
Here is the DataFlex Code:
Code:
Send ComMaxiCode 70 (iVOff+20) 330 (iVOff+230) ("[)>" + Character(30) + "01" + Character(29) + "9641464" + Character(29) + ;
         "276" + Character(29) + "068" + Character(29) + "1Z51146547" + Character(29) + "UPSN" + Character(29) + "32630V" + ;
         Character(29) + "327" + Character(29) + Character(29) + "1/1" + Character(29) + "2" + Character(29) + "N" + ;
         Character(29) + Character(29) + "NEUSS" + Character(29) + Character(30) + Character(4) + "!!!!!!!!!!!!!!!!!!!!!!!!!!")
Thanks for any suggestions!
mark