2
I’m using an interface where I have the menustrip
left and other form
to the right, from there on menustrip
has the options to novo
(form charges nvCli
) and busca
(form charges nvConsCli
), I need when the user presses the option busca
he updates the dataGridView
form(nvConsCli
) which will open, because if the user has just registered a record he already appears in gridView
I tried with the following code:
nvConsCli.clientesTableAdapter.Fill(nvConsCli.regDataSet.clientes);
And another series of codes, but it doesn’t work, it doesn’t reload the data from the database and put it on dataGridView