I'm using VS2005 and Selfservicing template for developing a windows application,
i have a datagridview binded to a TypedList that shows some data from three db table, it contains about 2000 record.
When I doubleclick a row, by a modal form the user can change some value (related to only one table/entity ) and save them in the DB. When the form closed i'd like to update the value displayed on the grid.
Since theTypedList is readonly I can't change directly the sigle datarow, and I won't refetch again all the data with fill method or use LoadDataRow method (the new line is added at the end of the list).
The only method I have found is to set the readonly property of interested datacolumn in TypedList to false and then update each field with new value...
Is there a more direct method ?
Thanks in advance (sorry for my english
).