DataView ListChanged event help please

R

Ray Holiday

Hi,

I'm using the DataView.ListChanged event to catch modifications to my table.

But every time I update a row in my table the event fires has many time has
I have columns. Since I have 55 columns and sometimes can be sending 3
updates within the same second, the event fires close to 170 times in the
same second. I would like to received only one update notification per row
rather than for every Item.
I am using the DataRow.BeginEdit( )/DataRow.EndEdit( ) methods on my
updates.
I also tried to use the DataTable.RowChanged event with the same results
(even worst!).

How can I be inform of a changed to my dataview (or table but preferably
dataview) without receiving so many notifications ?

Thank you very much for your help,

Ray
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top