Posts by Rubens Cordeiro • 11 points
3 posts
-
1
votes1
answer53
viewsA: PYTHON cannot identify the error in the code
You used the : in the wrong place. Make the change that Paulo Marques suggested, change if: life50 for if life50:
pythonanswered Rubens Cordeiro 11 -
0
votes0
answers160
viewsQ: How to Generate Qrcoder Image on screen using C# . NET Aspx with Qrcoder library
Metodo utilizando a biblioteca QRCoder. using QRCoder. public class GerarQRCoder { public static void GerarQR(TextBox txtQRCode) { string Cd = txtQRCode.Text.ToString(); QRCodeGenerator qrGenerator…
-
0
votes1
answer60
viewsQ: Insert based on a select, with NOT EXISTS validation with multiple records with Postgresql
Could someone help me, as a select-based Insert would do so by checking if the value already exists , with multiple values ? this way this working, however I would like to insert more than 1 record…