Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Is there a simple way to dynamically update a dataset from either an SQL or Access database without constantly invoking the Fill method?

My application needs to merely display data from a database that is constantly being updated from a completely separate application. Several of my controls are TrackBars that are databound to the dataset, and the Fill method really makes the indicator "jump around", regardless of whether it's data has changed.

Thanks.
Posted

1 solution

Use WPF, it does it automatically. Of course, it's just going to call the database and ask for the data, which is what Fill does. There's no magic way to get data from the DB without calling it, no.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900