Syntax
| CreateSEPA_QRCode[$](InvoiceNumber, InvoiceAmount [,PixelSize][,UseExtraBankAccnt][,TextColor][,ShowAmount][,ShowName][,ShowInvNo][,ShowIBAN])
| ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description
| If successful, returns the filename of a created QR code image file (.jpg), to automate payments via iPhone or Smartphone, according to SEPA standards.
Note: keep in mind that you need to remove the .jpg file manually after usage. It is stored in your personal Pictures folder.
Example:
| ||||||||||||||||||||
See Also
| |||||||||||||||||||||
Example
| Sub Main
Dim sFile As String
sFile = CreateSEPA_QRCode(123456, 123.45, 96, False,QRtext_Green, True, True, True, True)
If Dir$(sFile) > "" Then
SQL.OpenTradiumDocument sFile
End If
Kill sFile
End Sub
|