I am working with one table in my dataset on my table adapter when I insert new values to the dataset the datagrid which I am using only shows the information after I have restarted the application. Here is the code for the add event handler I am using:
string name = textBoxName.Text;
int munites = (int)minutesNumericUpDown.Value;
DateTime date = dateLeft.Value;
savedMinutesAdapter.Insert(name, munites, date);
savedMinutesAdapter.Update(dataset);
I am new in C# and wanted to know if there is something Iam missing