Refreshing Dataset problem

wadood

New member
Joined
Oct 16, 2005
Messages
1
Location
Aleppo-Syria
Programming Experience
5-10
Hi All
I have a client/server application in VB.NET
I'm using Dataset via code to connect a table in my SQL database
How to refresh the dataset to view the changes made by other users of my program on other clients

thanks for your help
 
You should implement some sort of check. One way of doing this is by checking timestamps when different perform a refresh.
Since you're using the server/client architecture you can watch for updates on the server and when this happens send some sort of a command to all connected clients that are listening for server events. On receiving this command the clients can initiate a method of some sort which updates the grid.
 
Back
Top