Hi friends,
In my application, I use a DataTable called "Objects" , I fill this table from a data table called "tblObjects" which is in an SQL Server database.
There are other users can access to this database and can make changes on the table "tblObjects".
Therefore everytime I work with the data table "Objects", I have to refill my "Objects" data table to ensure that i'm working with the current data.
But this proccess takes a long time, it slows down my application, it brings extra weight to the network and the Server.
If I could check that if the table "tblObject" (from the server) is changed or not , I could avoid this extra weight.
If the table is not changed there is no point to refill the datatable right :-)
Or if I can handle the changes on the table "tblObject" on the SQL Server then I could take an action.
I hope it is clear
Could you please give me some advises to implement this structure.
If some one can help me with this issue, I'll be very happy. Thanks a lot..

Filling data from SQL
Aleniko29139
carp
Thanks Jeff
It seems to be a good soolution. I think i will implemet this sollution to my application.
jbm007
This can't be done automagically, however this is what we have implemented to handle the same problem with our lookup tables (combo/dropdown data).
This works really well for us.
Cheers
Jeff
R Raghu
Glad to help.
Could you please mark my answer as answering your question