Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
How are you binding the data grid? – Michael Perrenoud Jul 22 '12 at 11:10
minutesDataGrid.DataSource = dataset; – user1407955 Jul 22 '12 at 11:41
Is the dataSet an actual DataSet type? – Michael Perrenoud Jul 22 '12 at 11:59
the dataset that I am using is a typed dataset – user1407955 Jul 22 '12 at 12:32
and it is an actual dataset – user1407955 Jul 22 '12 at 13:27
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.