Posts by Lucas Verissimo • 61 points
5 posts
-
0
votes0
answers159
viewsQ: Text widget displays only 1 character
I’m starting flutter now, and in my first App (which should display random phrases as you press a button) it’s giving a problem, rather than displaying sentences, it displays only a single…
-
1
votes1
answer51
viewsA: How to select two Columns with Different values when the ID Matches
You can use INNER JOIN to join information from two or more tables (if you are talking about SQL). Example: SELECT a.*, b.* FROM 'table1' AS a INNER JOIN 'table2' AS b WHERE a.id = b.id;…
-
1
votes1
answer92
viewsA: How to make windows form take up all the space within the MDI application?
I found the solution. To leave the Form with 100% inside an Mdi application, just go to the Form properties, configure formBorderStyle with "None" value, and also go to windowState and leave with…
-
-1
votes1
answer92
viewsQ: How to make windows form take up all the space within the MDI application?
I am creating a registration and management system that works only with CRUD. The whole functional part of the system is working perfectly, but there’s something that’s been bothering me. I’m using…
-
1
votes0
answers83
viewsQ: Error connecting running Query in Mysql + C# - Visual Studio
I’m trying to make a connection to the Mysql database through Visual Studio and I’ve already added the database in the Server manager, tested the connections and it all worked out. The problem is in…