Posts by Christiano Ribeiro Soares • 108 points
10 posts
-
0
votes0
answers30
viewsQ: Django Rest Framework + React I can’t return the Cookie
I’m starting with Django and React development. I tried to make a User Authentication page. When loading the User Registration page I call the API in Django to return the CSRF via Cookie and then I…
-
1
votes0
answers51
viewsQ: Read the Selectedvalue property of a Combobox with Livebindings
I need to recover the value of the property Selectedvalue of a Combobox that is connected to my table through Livebindings. I have seen suggestions to connect the Selectedvalue to the TAG property…
-
1
votes3
answers121
viewsA: Compare birth date registered in the database to a custom date - mysql
Straight to the point, the correct way to query is to repeat the same formula you used for the age column, thus staying: SELECT TIMESTAMPDIFF(YEAR, data_de_nascimento, CURDATE()) as idade FROM…
-
0
votes1
answer295
viewsQ: Save $_POST with var_export after generating Variable again
I needed to generate some data by taking the contents of a $_POST and saving it to a file to process it later. I did it this way: $dados = $_POST; $dados = var_export($dados, true); $handle =…
-
1
votes1
answer289
viewsQ: More of a relationship with the table below
I have a Receivables table that has a relationship with the Customer Table and TWO relationships with a Chart of Accounts table* I searched the Eloquent documentation but couldn’t find out how to…
-
1
votes1
answer255
viewsA: Show DBF values above Mapwingis + Delphi points
I do not know this area of yours and also did not work with Mapwingis. To open a DBF file (Foxpro Data File), you need to create a connection to that database. You can use the Tadoconnection…
-
0
votes5
answers1479
viewsA: Input javascript text only
What I understood was that you wish that only letters from "a" to "z" (only lowercase) can be typed. Their Keycode goes from 97 to 117. I redid his code and he was like this: function…
javascriptanswered Christiano Ribeiro Soares 108 -
1
votes2
answers2450
viewsA: Image on Tspeedbutton with Timagelist
I consulted forums and continued searching on the internet and am posting an option to solve the problem. The size of the image in Tspeedbutton is set through a stylesheet (stylesheet), and only by…
-
2
votes2
answers2450
viewsQ: Image on Tspeedbutton with Timagelist
Greetings to all! I’m starting to develop in Delphi 10 Seattle, before I used Delphi 7. I’m trying to create a toolbar, I’m using Ttoolbar with a Tactionlist, Tspeedbuttons and Timagelist. I’m using…
-
1
votes2
answers680
viewsQ: Align Menu Items Vertically
I’m trying to create a horizontal menu but I’m having difficulties in vertical alignment. Some menu items have line break and others do not. I tried to create a CSS to configure the elements div, ul…