hi,
this code give the Error : Too Many Arguments (code is from Blog Example)
Var p As Picture = Barcode.Image(“Xojo Rocks!”, 120, 120, Barcode.Types.QR)
this one works
Var p As Picture = Barcode.Image(“Xojo Rocks!”, 120, Barcode.Types.QR)
Why?
hi,
this code give the Error : Too Many Arguments (code is from Blog Example)
Var p As Picture = Barcode.Image(“Xojo Rocks!”, 120, 120, Barcode.Types.QR)
this one works
Var p As Picture = Barcode.Image(“Xojo Rocks!”, 120, Barcode.Types.QR)
Why?
From the docs:
Thank you