-
Hello, I am using Visual Studio 2022 and vb.net. I added QRCoder usng NuGet. So far so good. Usigng hte sample provided I quickly managed to create a default QR code. After this I wanted to use the Girocode format as I need to create a SEPA payment using the follow code:
Now I get the error message: "BC30311 Value of type 'PayloadGenerator.Girocode' cannot be converted to 'String'. " Can anyone tell me what I am doing wrong? Many thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I have found the mistake - needed to change
Then everything was OK |
Beta Was this translation helpful? Give feedback.
I have found the mistake - needed to change
QRGen.CreateQrCode(GiroCode_Payload, QRCodeGenerator.ECCLevel.Q,) to QRGen.CreateQrCode(GiroCode_Payload)
Then everything was OK