Posts by Yan Patrick • 101 points
7 posts
-
2
votes0
answers283
viewsQ: Create an ellipse / circle in Unity + C# - using Point3d and Virtualdraw
I need to implement a Unity project, creating an ellipse. In the project there is already the code of creation of "line" and "rectangle" that works perfectly. The project is for a master’s degree…
-
2
votes1
answer1042
viewsA: Inno Setup shortcut desktop via code
Good morning, Using the Inno setup I create desktop icon, following as an example the code below. In my case where it says "Systec Smart" is the name I want it to be. [Icons] ;cria no menu iniciar…
inno-setupanswered Yan Patrick 101 -
0
votes2
answers309
viewsA: SQL update query syntax error
Friend, if I understand your proposal correctly, the following SQL solves your problem: UPDATE artigos SET totale = tmp.sent FROM (SELECT cod_artigo, SUM(quantidade_ent) AS sent FROM entradas GROUP…
-
1
votes3
answers3400
viewsA: Field value related to another field of another table?
I don’t know if it helps much, but the situation you described, in real database environment (Postgre) for example, I would make a trigger (trigger), after insert or update on the table tbPessoas…
-
0
votes2
answers612
viewsA: Add a third-party program to an installer
Good night, Just to reinforce with another example, I’ll show you part of my company’s ERP installation script: [Files] Source: "..\..\..\SetupSystec\Systec\*"; DestDir: "{app}"; Flags:…
-
3
votes2
answers5590
viewsA: Windows Service - Error 1053 on Start
If the error persists, the best thing to do is to try to debug the service, as indicated by @Khaosdoctor. When I need to debug something, I put Try catch everywhere and I have a class to add log in…
-
2
votes1
answer1701
viewsQ: C# - Use of A3 Certificate (Card Reader) + Windows Service
Good morning to all. I created a windows service (C#) where I sign XML from NFC-es using Flexdocs DLL. Using A1 certificate everything works normally, but when using A3, the frame where I must enter…