Posts by Paulo Alexandre • 255 points
11 posts
-
0
votes2
answers55
viewsA: How to make multiple Ivs that alternate between visible and invisible?
simply Voce pull up the ng-show as below: <div class="toggle-box" ng-show="visivel"> <div ng-click="visivel = !visivel"> Enésimo painel </div> <div> Eu só vou aparecer quando…
-
0
votes1
answer179
viewsA: Line breaking with Onclick Javascript
You are using the document.querySelector("#infoRight").setAttribute('style', 'display: block;') Block display causes it to break the line. You switch to inline display…
-
2
votes2
answers269
viewsA: Update tables using Trigger from a main table
In the case of delete you can use a subselect on where to inform the items to be deleted: DELETE z WHERE z.Xid IN (SELECT Id FROM X) In the case of update you can use a "update com from": UPDATE z…
-
1
votes1
answer37
viewsA: Problem in converting a query into Vb.net for a varchar model
You can use a TYPE to pass the information you need by following example: in SQL Voce create TYPE: CREATE TYPE [dbo].[TPV_VARCHAR_LIST] AS TABLE( [Item] [varchar](8000) NULL ) in Vb Voce uses a…
-
3
votes1
answer67
viewsA: What is the best way to update multiple tables using a Trigger?
Wribeiro, The use of cursor is very slow, it is not recommended to use, by itself using TRIGGER is already complicated due to later maintenance, if it is not well documented it is very easy to…
-
0
votes3
answers523
viewsA: How to make a panel with double information with <tr>
To do this you need to use two Divs with CSS. The default div already has line breaking with display: block. as an example you can reach your obese: <!DOCTYPE html> <html> <head>…
-
0
votes1
answer132
viewsA: Desktop app changes - Visual Studio C#
You can use the Autoupdater.NET nuget, with this nuget through the Assembly version that you can modify in the project properties or in the Assemblyinfo file in the fields: [assembly:…
-
1
votes1
answer177
viewsA: Asp Net Core MVC - Create Form with Multiple
Try to make the next change Endereco end = new Endereco { BairroID = endereco.BairroID, TipoID = endereco.TipoID }; ocorrencia.Endereco = end; ocorrencia.EnderecoID = end.EnderecoID; for Endereco…
-
1
votes1
answer262
viewsA: Consume via Jquery-Ajax, an API on localhost:28033, from a page on localhost:7545
Eduardo, You need to enable . NET Core CORS. Within the Project Startup . NET Core within the Configuraeservices method adds: services.AddCors(); and inside the Configure method adds: app.UseCors(x…
-
2
votes3
answers135
viewsA: MVC: parameter in URL is not being passed to controller
Gleison, Solution 1 Voce needs to put in the [Fromquery] way thus: public async Task<IActionResult> Buscar([FromQuery] string ArtigoOuCategoria) { ... } But to work Voce needs to call it so:…
-
0
votes1
answer266
viewsQ: Bematech MP 4200 TH - dll MP2032 to know if you finished printing
Good afternoon, I am developing an integration with payment via Getnet TEF in c#, my problem is in printing the payment confirmation coupon, and for approval I need to be sure whether the printing…