Posts by Poke Clash • 20 points
6 posts
-
0
votes2
answers59
viewsA: Error clicking button to save data to database
You need to convert the text of your maskedTextBox into Datetime, because the column VALIDADECARTERINHA from your database is type Datetime and Voce is trying to pass a string to this field. Try to…
-
0
votes1
answer34
viewsA: Help - Modify formula when changing radiobutton
You can check which radiobutton is checked and depending on the radiobutton makes the changes and all this just in a void, using a radioButton.Checked, forget the void…
-
-3
votes1
answer36
viewsA: Audiosource Error with Unity prefabs
It turns out that Voce is not destroying the object on which it is colliding, it would be more practical to create an "Enemy" tag and put in the Frogs and then already put a script player collision…
-
0
votes3
answers42
viewsA: c# - Update excel spreadsheet with textbox text
You can use the OleDbCommand.Parameters.AddWithValue(string parameterName, Object value) Try it this way: private void button2_Click(object sender, EventArgs e) { try { OleDbCommand command = new…
-
0
votes1
answer51
viewsA: Maskedtextbox how to put mask dynamically in Windows Forms C#
To create dynamically Windows you can initially put one MaskedTextBox maskedTextBox = new MaskedTextBox(); and put all the settings you want and to instate, a Controls.Add(maskedTextBox);. And to do…
-
0
votes1
answer76
viewsQ: How to write two Readline in a single line?
I was doing some tests and when I tried to do an example of date system, in the case of birth I came across the problem, that Voce can only write at the end of the Console.Write(), when Voce puts a…