C# Dataset usage necessary before passing to GridView datasource?

Posted by Goober on Stack Overflow See other posts from Stack Overflow or by Goober
Published on 2010-01-27T11:39:56Z Indexed on 2010/03/12 23:07 UTC
Read the original article Hit count: 166

Filed under:
|
|

Scenario

Lets say for example I have a series of events that fire continually every half second presenting me with an object containing some bits of information. There are always between 10 and 15 objects that are being updated constantly. Since these bits of information are changing continually I want to display them in a GridView. When I do so, I want the user to see the data displayed in the gridview and actually be updated as opposed to just a continually extending list being printed and incrementing (like writeline on the console).

Question

Is the best way to achieve this to map my objects to a dataset and have the dataset mapped to the gridview?

Thoughts

Will this allow the gridview to just be "UPDATED" as opposed to being added to?

Any implementation suggestions would be greatly appreciated.

EDIT:

it MUST be windows forms (I use DevExpress too)

© Stack Overflow or respective owner

Related posts about c#

Related posts about dataset