Posts by Eddy Albines • 70 points
15 posts
-
0
votes2
answers17
viewsA: Adjust columns in Tkinter Table
You are positioned the Table element in a frame, you have to see how you are positioning this Frame, you are using the . grid() or . pack(), with grid you have to specify the position of the…
-
0
votes1
answer80
viewsA: Selenium - Click Input with Onclick() event does not work
You can user the following method, since with Chrome analysis, the page can change structure and be positioning the selector elsewhere, so it’s best to be more specific…
-
0
votes1
answer31
viewsA: Failed to run a Python file
You probably need to configure PYTHONPATH, in crontab you can run a script that runs your python program, but first you have to write the following export PYTHONPATH=/path/to/lib Where the path…
pythonanswered Eddy Albines 70 -
-1
votes2
answers65
viewsA: Comparison of PHP and MYSQL dates
First thing, your query, dates do not have to be compared only if they are equal but tb smaller, so you have to replace = with <= controls whether or not data is changed in the Database And to…
-
0
votes2
answers622
viewsA: Position 2 buttons side by side of an input
You can use the second mode, with css and js that control everything, and so that the buttons do not appear above and below if you use the input type text $('.btn-number').click(function(e){…
-
0
votes1
answer47
viewsA: Why is this button not updating in the bank?
You must correct and order the last code <?php /* session no começo e tudo */ session_start(); include("conexao.php"); echo $_SESSION['nome']; /* avalora $nome, que nao foi avalorada antes */…
-
0
votes1
answer51
viewsA: Select one or more Checkboxs release send button
Voce can try to put an id in the input field and debug the button as follows: <div class="selecionar-todos"> <input class="form-check-input" name="tecnologia" type="checkbox" value=""…
-
0
votes1
answer42
viewsA: Composite foreign key - ERROR 1215 (HY000): Cannot add Foreign key Constraint
On the medical tabla, the status column is already a key Primary, so it can’t be a key Foreign, so when you take out the key Foreign the column state on the third tabla, no more error
-
-1
votes2
answers400
viewsA: Global variable for Python directory storage
Try calling the variable inside each function less where you first declared global dir_env
-
-1
votes2
answers87
viewsA: SQL Server Charindex Problem
Olà, Voce tried with SUBSTRING_INDEX? SELECT distinct SUBSTRING_INDEX('AVENIDA SAMPAIO VIANA 277',' ',-1) FROM dbo.ztemp_cadclifor;
sql-serveranswered Eddy Albines 70 -
2
votes1
answer30
viewsA: Get the selected id in a content
a Dato may be passed by SESSION[] the cookie. but in that case you don’t know what to save in If the coockie and the salutation would put the category by the url and pick it up again on the page…
phpanswered Eddy Albines 70 -
0
votes1
answer33
viewsA: Convert timefield type of Ext JS to time in DB
I didn’t quite understand your question, but I think in any case you have to put the result of the suggested line code in a variable var finalTime = record.get('attendance_time'); //Recupera valor…
-
0
votes1
answer85
viewsA: How to make a select if repeat integer 1 time for each month in a dynamic date range?
From what I understand, you want to run the following query SELECT * FROM vendas WHERE YEAR(Data_Venda) >= [ano do periodo inicial] AND MONTH(Data_Venda) >= [mes do periodo inicial] AND…
-
1
votes2
answers100
viewsA: Remaining minutes between field and dateAtual
Try with this query SELECT * FROM tabelax WHERE datareg > NOW() - INTERVAL 02 MINUTE I await reply :) Edit: SELECT * FROM tabelax WHERE datareg >= NOW() - INTERVAL 02 MINUTE AND datareg <=…
-
0
votes3
answers496
viewsA: How to change Columns display order?
can do this using Bootstrap <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"…