Posts by anderson seibert • 569 points
31 posts
-
0
votes2
answers81
viewsA: Sum and total sql
Follow a practical example Example create table wp_grade( id int primary key, saidas decimal, entradas decimal); insert into wp_grade values(1, 30, 200); insert into wp_grade values(2, 230, 150);…
sqlanswered anderson seibert 569 -
1
votes1
answer42
viewsA: Select time in Mysql
Below is an example: Example SELECT *, DATE_FORMAT(horario, '%H:%i') as horario FROM wp_grade, (SELECT horario AS a FROM wp_grade WHERE DATE(horario) = CURRENT_DATE order by horario DESC LIMIT 1) AS…
-
0
votes1
answer904
viewsQ: How to validate an HTML form with Javascript?
I’m trying to do a javascript function to validate a form, I want that function scroll through the form and check which fields are required (required) and then add these fields into a list to then…
-
3
votes2
answers428
viewsA: Text with line break
Another solution: string retorno = $"<h3>Codigo: {codigoProduto} <br> Nome: {nome} <br> Valor: {valor} </h3>";
-
2
votes3
answers1608
viewsA: How to make Confirm custom?
There is a very interesting library at the link below here And an example below: <html> <head> <link…
-
0
votes1
answer89
viewsA: How to place a variable in the middle of the route at the angle
You could set a global variable for example who knows in the app.js var enderecos = { cliente1: 'www.minhaempresa.com/nomeCLiente1/', cliente2: 'www.minhaempresa.com/nomeCLiente2/', } ai at the time…
-
0
votes1
answer526
viewsA: Calculation using Angular JS
You do not need to put an id in the input to get the entered value, add in your array another variable in the case below created with the quantity name, ai in the input put as ng-model this variable…
-
0
votes0
answers79
viewsQ: Request for time-to-time API
I am in need of making requests for a time API in time for example, every 10 seconds, I have no knowledge of any way to do this, it would be similar to SetInterval of javascript but in C#, the other…
-
2
votes3
answers3147
viewsA: Unity 3d: Passing information from one scene to another
You can do this using the function: PlayerPrefs.SetString("Nome", variavelNome); To save in scene 1, and then in scene 2 use: PlayerPrefs.GetString("Nome"); To manipulate the information!…
-
2
votes2
answers867
viewsA: Create function that simulates typing
<div id="div"></div> var div = document.getElementById('div'); var texto = 'FELIZ NATAL!'; var escrevendo = true; function escrever(str, el) { var char = str.split('').reverse(); var…
-
0
votes1
answer90
viewsA: Convert Arraylist to Object[][]
ArrayList<String> a = null; a = new ArrayList<String>(); a.add("ABC"); a.add("DEF"); a.add("1"); a.add("1"); //Converter para Object 2D int n =…
-
0
votes1
answer153
viewsA: Save android studio project
One of the ways to save the app is by backing up the "src" folder of the project, there will be all its code classes, Activity’s, strings, manifest, etc., to restore the project create a blank…
-
1
votes1
answer71
viewsA: One method taking information from another method
import java.util.ArrayList; import java.util.List; public class Conta { int numero; String dono; double saldo; double limite; List<String>…
-
0
votes1
answer24
viewsA: Manipulation of Unity3d scripts and properties?
One way to keep this data global is by using Playerprefs with it you arrow values and picks up values from anywhere in your game. Follow the documentation link:…
unity3danswered anderson seibert 569 -
3
votes3
answers156
viewsA: Condition in a select
SELECT * FROM FILME WHERE COPIAS > 5 http://sqlfiddle.com/#! 9/120769/1
-
2
votes3
answers628
viewsA: Make html class appear and disappear by js
document.getElementById("ID_DO_ELEMENTO").classList.remove("NOME_DA_CLASSE");
-
2
votes1
answer55
viewsA: Add values in a 3-dimensional matrix
Scanner input = new Scanner(System.in); int[][][] matriz = new int[2][2][2]; for (int i = 0; i < 2; i++) { for (int j = 0; j < 2; j++) { for (int k = 0; k < 2; k++) { …
-
0
votes0
answers66
viewsQ: Connection between Entity Framework and Sybase 12
People trying to make a connection with visual studio 2015, using C# and using the Entity Framework and Sybase 12, I’ve turned to the internet and I can’t find a solution if anyone knows anything…
-
-3
votes6
answers3209
viewsA: How to turn string into time in PHP?
$timeString = date('H:i:s',strtotime($time))
-
3
votes1
answer1283
viewsQ: You can take out advertising from Unity by starting games
I wonder if it is possible and how I do to remove the advertising screen from Unity when starting games.
unity3dasked anderson seibert 569 -
0
votes2
answers141
viewsA: SELECT in 2 Mysql tables with PHP
SELECT pro.id,pro.nome,exp.id,exp.nome FROM Profissional pro, experiencias exp WHERE exp.id = pro.id and pro.id = :algumacoisa
-
0
votes5
answers16847
viewsQ: Take parameters from the URL
Guys I have the following url: http://localhost:27903/detalhes.aspx?id=3014953&stars=70 I need to get the separate parameters, id and Stars, some hint I’ve tried everything, follow my code:…
javascriptasked anderson seibert 569 -
2
votes1
answer874
viewsQ: Type the product name in the Edit and take the database image in the Timage component
I’m making a system where I need to search the name of the product. Below Edit appears a grid for auto complete, then when I press Enter on the product name, on the grid, you need to appear on the…
-
0
votes2
answers1125
viewsA: View the side menu in a Form
My suggestion is to keep the project only on fullscreen and take the buttons maximize the screen, can also make a precedent for when the screen is lowered.
-
2
votes2
answers273
viewsQ: Class that selects the product name or code or value
I am making a class that will receive one of the three values, and will list the field I fill in, I will enter the product name or the code or the value and will list me. I need help to make the…
c#asked anderson seibert 569 -
0
votes3
answers422
viewsA: Doubt about extends Application
First you must create the parent class. for example. public class funcionario{} //somente um exemplo after should extend it or is to create a daughter class so we will use a manager who is an…
-
2
votes3
answers8001
viewsA: What is the right way to remove the edge with CSS?
Both are correct, if you set 0 or None on the same.
cssanswered anderson seibert 569 -
2
votes1
answer1478
viewsQ: Integrate Qrcode reader into Delphi system!
I would like to know if it is possible to integrate a Qrcode reader that uses Webcam to read. Or a barcode reader. I have no idea how to start, so I haven’t done anything yet!
delphiasked anderson seibert 569 -
2
votes1
answer6289
viewsQ: Save Clientdataset data to an XML file
I made a simple registration system without involving database, I need to know how I write files of the Clientdataset register in an XML file and when I go to query they appear in my grid!
delphiasked anderson seibert 569 -
1
votes3
answers21331
viewsQ: Insert image into database
What type of variable do I use to store an image in the database? And is there a specific command for this? or just enter as any record? I have a product table with the fields: code, name, price,…
-
6
votes2
answers5023
viewsQ: Fill in a Word document from Delphi
I want to create a system in Delphi, where I fill in the labels and then creates a word document with the information I typed... I put an example below where I will type the information and when I…