Home Forums Programming General Updating datagrid with C#.net RE: Updating datagrid with C#.net

  • ray is this for a web page or for a winform?

    for Winforms, i usually create a binding source,

    set the binding source.Datasource to your datatable, and finally set the the .Datasource property of the bindingsource to that.

    form the, there grid auto-magically changes datarow values based on edits.

    so if i change some data only in the third row of the grid , the DataRow.HasChanges() would be true, and when you call the Adapter.Update, it would build the commands behind the scenes to update only rows with changes.

    is that the question?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!