Posts by Gabriel Correia • 3 points
3 posts
-
0
votes2
answers36
viewsA: Problems performing database search (Filtering)
It would be interesting to use a Function: Function Dbselect($table, $params = null, $Fields = '*'){ $params = ($params) ? " {$params}" : null; $query = "SELECT {$Fields} FROM {$table}{$params}";…
-
-1
votes1
answer97
viewsQ: Error saving form data to DB with c#
Is my registration logic correct? Because I am not able to save the fields in the Database, follows below the button code: private void cmdSalvarGuiche_Click_1(object sender, EventArgs e) { if…
-
0
votes1
answer138
viewsQ: Error calling form screen
I’m having trouble loading a menu through another screen follows my code below. What would be a possible solution, for such error? public partial class frmMenu : Form { public frmMenu() {…