Subject Re: [IBO] Deactivate Detail Datasets (was: ...MasterSource)
Author neckarelzer
Hmmm...

> But there's another solution that I think is "cleaner":
> - Drop an extra IB_DataSource on your form....
> - Leave the datasource of all your controls untouched, but...
> - Now if you want to disable updating of the detail set...
> ... ... ...until you call CustMasterSource.EnableControls

I see that CustMasterSource.EnableControls doesn't update the
detail set right away. You have to call Refresh on the detail
set too, or wait until the next time the master scrolls.

So maybe this one was easier after all, especially if you have
only one detail set:

> - to freeze detail updates: DetailSet.MasterSource := nil;
> - to re-enable them : DetailSet.MasterSource :=
MyMasterSource;

Grtz,
Paul