Posts by thiagomoura • 51 points
5 posts
-
1
votes1
answer121
viewsA: Set existing value in combo box C#
The fields were not being loaded due to not initializing the combo, I created a procedure to load the combo, then called it in a condition within the Load event private void CarregarCombos() {…
-
1
votes1
answer121
viewsQ: Set existing value in combo box C#
I am passing a completed DTO object to an editing form, through the event click on a Change button. In this edition form, I want all fields to be filled out as soon as it is opened, but the fields…
-
0
votes1
answer133
viewsA: Problem downloading a file with an accented name
I’m new to the subject, but you’ve tried using Namespace: System.Globalization. And in the file for download Cultureinfo.Invariantculture And why I had a similar problem and with that namespce…
-
1
votes2
answers264
viewsQ: SQL syntax error when updating a record in C#
When I run my program to update a record, I get the following syntax error But my SQL syntax is correct: string comando = "UPDATE cliente SET nome = '" + dto.Nome + "', SET email = '" + dto.Email +…
-
0
votes1
answer87
viewsQ: Error: Undefined object reference for an object instance of an Object.System.Formatexception
I’m having a problem when it comes to excluding a client. In the bank is deleted, but instead the message appears: "SUCCESSFULLY EXCLUDED!", message appears: "Could not delete". Details: Undefined…