views:

85

answers:

0

Is there any single event on the DataSet that I can use to make sure my client has applied updates and has the newest data from the SOAP Server?

At the moment I need to add

clientDataSet.applyupdates(0);  
clientDataSet.refresh;  

for each AfterDelete and AfterPost event on all datasets I use in my SOAP client?

It seems rather a lot if there are many datasets.

Any thoughts?