Posts by PauloGalego • 105 points
20 posts
-
1
votes1
answer52
viewsA: PYTHON - RPA - Wait PROCESSING window to continue automation process
I just tried the obvious and I got it. To check if the popup is still on the screen, I entered the command: while(r.present('Assets/Running.png')): r. Wait(5) I believe you may have better…
pythonanswered PauloGalego 105 -
0
votes1
answer52
viewsQ: PYTHON - RPA - Wait PROCESSING window to continue automation process
I am automating the generation of reports in a web system, SAP. In this process I use python, with the libraries: Selenium and rpa. I was able to find the fields to enter the information, however,…
pythonasked PauloGalego 105 -
-1
votes1
answer36
viewsQ: Quote an array - Jquery
I need to put inside each element of my array, simple quotes. In the code below, I check which checkbox is selected, and insert in my array. var checkbox =…
-
-2
votes1
answer44
viewsA: Special characters returning in Json in PHP
I got a solution for anyone with the same problem. I used this: $sql = mysqli_query($conn,"SELECT codigo, estado FROM estados"); $linhas=mysqli_num_rows($sql); if( $linhas > 0 ) {…
-
-1
votes1
answer44
viewsQ: Special characters returning in Json in PHP
I made an "api" to return the data in json format, however the record that contains accent, is displaying special characters. Look at my code, what I could do, there’s some command I can add? I…
-
0
votes1
answer59
viewsQ: Label html breaks text - fit with Bootstrap
When I open my desktop page it looks like this: When on cell phone, it looks like this: My code is like this: <div class="form-group"> <label for="qtdpessoas" class="col-sm-2…
-
0
votes0
answers38
viewsQ: Doubt Volley on Android
Is it necessary to have a Listview to send data to the webservice with Volley on Android? Because I only created three Edittext to test. It’s returning "timeout error". I’ve checked the url, it’s…
-
1
votes0
answers47
viewsQ: Cumulative Total 12, 6 and 3 months
I need to enter below my total, a cumulative total of 12,6 and 3 months. The base I use contains a column called competency to group. I actually created another table to put these 3 rows of…
-
-1
votes2
answers2531
viewsQ: button to show/hide div
I have a div I’d like to hide and display through a button. However when I click on this button, instead of hiding/displaying the div, the form is sent. See the code snippet below: <form…
-
1
votes1
answer115
viewsQ: Alignment of div’s on the right
I am unable to align the div’s right into my mpdf report. Below contains the report print and code. Below the code: </head> <style type='text/css'> .dados_principais { border: 1px solid…
-
1
votes1
answer555
viewsQ: Error generating PDF report with mpdf60
For a few days now I’m trying to generate a PDF report with PHP, I found several examples on the internet and all gives the same error, below I put the example code and the error print. My Xampp…
-
0
votes1
answer578
viewsA: Return Json with special characters
I changed only one line of code: if( $linhas > 0 ) { while($resultado = mysqli_fetch_assoc($sql)){ // $vetor[]= array_map('utf8_encode', $resultado); $vetor[] =$resultado; // <- apenas isso..…
-
1
votes1
answer578
viewsQ: Return Json with special characters
I am performing a query in the database (Php, Mysql and Ajax), the return of this query is a Json, however all accents are coming with special characters, I put a log to see the result. Below…
-
0
votes1
answer51
viewsA: Ajax return error - Json format with PHP
was with error in the code that performs the query in the database, the variable '$qryLista', this out of context, the correct is: '$result'.
-
2
votes1
answer51
viewsQ: Ajax return error - Json format with PHP
Good evening. I am unable to find the error. I intend to build a list as I enter the date in the input date. Below is html: <div class="form-group"> <label…
-
0
votes1
answer561
viewsQ: Button to delete PHP photo with Jquery
Good afternoon. I need to include a button in my editing form so I can delete the user’s photo. I’d like to do with jquey and ajax, I’m still learning. I’m using mysql that stores only the photo…
-
1
votes2
answers5173
viewsQ: Check if you returned records in select PHP
I need to check if my 'Select', is returning records to then load the data on the screen. Below follows the code I am using: $sql = mysqli_query($conn,"SELECT * FROM USUARIOS;");…
-
-1
votes3
answers143
viewsQ: Hide an image when a web page is loaded on a mobile device
I need to hide an image when a web page is loaded on a mobile device. The problem is that it cannot change the HTML structure of the page, only in Bootstrap, CSS and Javascript.
-
0
votes1
answer853
viewsQ: Could not find android.jar for API Level 25
I’m just trying to run a simple "Hello World" in Visual Studio. I created a project like Cross Platform. I installed Visual Studio 2017, while trying to run does not open the emulator, generating…
-
0
votes0
answers153
viewsQ: Write null Datetime field in Access base (mdb)
Good afternoon to all. Please I need your help. I am trying to record/update a Datetime-like Birth field, but not always this field will be populated due to business rule sometimes it will be null.…