Posts by Ivan Antunes • 115 points
14 posts
-
0
votes1
answer18
viewsA: Find out less value that is coming from an excel
Hello from what I saw in your logic the problem and that you are using Else if as it comes to 3 comparisons should be 3 if for example $valor_coluna_a = 50; $valor_coluna_b = 48; $valor_coluna_c =…
phpanswered Ivan Antunes 115 -
0
votes1
answer242
viewsA: Compound Interest Calculator in JS
Hello William I took a look at the code and found some problems the first was that you were trying to use the variables outside the function calculate juros_compounds in the case after the form.…
javascriptanswered Ivan Antunes 115 -
1
votes2
answers164
viewsA: Ctrl+/ shortcut in vscode
Hello I believe you are editing the wrong thread. In my case I use ctrl + ;. Add Comment: Fold All Block Comments editor.foldAllBlockComments Remove Comments: Toggle Line Comment…
-
-3
votes1
answer62
viewsA: Simple question from PHP
Apparently missing parameters for connection. Below is the method I do. <?php $DATABASE_HOST = 'localhost'; $DATABASE_USER = 'root'; $DATABASE_PASS = ''; $DATABASE_NAME = 'nome_do_banco'; $con =…
-
0
votes2
answers160
viewsA: Stored Procedures in Mysql runs but cannot access to view or edit
According to this message you have no privilege to edit the routine. In case the user you are using has limited permissions. It may be a phpmyadmin bug, you can try to edit your routine on Mysql…
-
0
votes2
answers444
viewsA: I cannot import a feature module into the main module. Angular
I believe the problem is happening because you are not exporting the components. Solution Appmodule.ts ... import { CategoriasModule } from './categorias/categorias.module'; ... @NgModule({…
-
1
votes1
answer400
viewsA: Timer break - PIC18F4550
In the PIC18F4550 we have 4 TIMERS embedded in it being the following: Timer0 : 16-bit Timer1 : 16-bit Timer2 : 8-bit Timer3 : 16-bit Of the four timers in the PIC18F4550, show Timer1. The work of…
-
1
votes2
answers1305
viewsA: Parent component receiving child component data
In Angular we have something called @Input and @Output they allow to traffic data between components for example. Component Pai mandaDados: any; this variable will receive the sample data a filter…
-
1
votes2
answers141
viewsA: Typescript - Error: Debug Failure. False Expression:
You can import 3 ways being 1 of them this way, case of errors try to procreate the types then install them with the following command npm i @types/redis --save if the error continues, you can…
-
0
votes1
answer189
viewsA: formControlName with *ngFor
The Formgroup is used to group responses from inputs and the formControl is to store in a variable and pass this information to the Formgroup so that you can be working with them, in which case you…
-
2
votes3
answers132
viewsA: Best way to pass data from one component to another
In Angular we have something called @Input and @Output they allow to traffic data between components for example. Component Pai mandafiltro: any; this variable will receive the sample data a filter…
-
0
votes1
answer31
viewsA: Open DIST Urls
mainWindow.loadURL('file://' + __dirname + '/dist/index.html#/update'); this way I managed to solve the problem
-
0
votes1
answer31
viewsQ: Open DIST Urls
I’m having a problem when I build the project with Electron to call an UPDATE screen of the project in Angular since dist do has index.html, in the development mode managed to call quiet.…
-
1
votes1
answer80
viewsQ: Error using Mattabledatabase in Angular
Type 'Mattabledatasource' is Missing the following properties from type 'Subscription': closed, _parentOrParents, _subscriptions, unsubscribe, and 2 more. I have this error in my code, when I run it…
angularasked Ivan Antunes 115