Posts by regisls • 148 points
6 posts
-
1
votes1
answer76
viewsQ: Problem returning data with Mysql PDO
I have a query that returns the permissions of a certain group of users of my system. I use Mysql with PHP. My SQL command is as follows: select p.Codigo, p.Descricao, (case when gp.CodGrupoUsuario…
-
0
votes1
answer88
viewsA: Connection problems between the Entity Framework and the Database?
Check that there are no two connection strings in your web.config file and check in the context creation class if you are using the correct Connection string.
-
1
votes0
answers226
viewsQ: Process.start() does not start another application correctly
Hello. I have a solution composed of three applications. One of them is a Windows service (Boardservice.exe). Another is a Windows Forms application that opens a presentation screen and creates an…
-
0
votes0
answers96
viewsQ: Boleto.net wallets x Caixa Econômica Federal wallets
Hello. I have to implement the issuance of slips and shipping files from Caixa Econômica Federal. I started reading the documentation, but I was very confused about the wallets I can use. In the…
-
1
votes2
answers169
viewsA: C# ASP.NET - Get last value from a Stored Procedure Parameter
If what you want is to get a return parameter from your Stored Procedure, you can do this by declaring a parameter of type "output" and recovering that value after execution in C#. See in the…
-
0
votes1
answer87
viewsQ: How to make a web app localhost modem configurator type?
Hello. I am a C# developer and I need to make a configuration application for a Windows Service. I thought of something similar to those internet modem configuration applications that run directly…