G
Guest
I have a form based on a single master record stored in a dataset table.
The master record references many other tables (about 12) in the dataset.
I use combo boxes to display the current values and to enable value lookup's for editing.
Unfortunately, most of these references refer to sql tables which may be updated by other users.
If I refill the main table with a new record then it is possible that it makes reference to some value that I don't have cached in the Dataset.
Is there any way to detect this situation and to cause a refill for the related table(s)?
It is essential that I don't have to reload every related table for each main record read as this could entail nearly 600 reads.
Ideally only the values for the current master record and referenced values would be present in the dataset.
A combobox show event would refill that table on demand. Any Ideas?
The master record references many other tables (about 12) in the dataset.
I use combo boxes to display the current values and to enable value lookup's for editing.
Unfortunately, most of these references refer to sql tables which may be updated by other users.
If I refill the main table with a new record then it is possible that it makes reference to some value that I don't have cached in the Dataset.
Is there any way to detect this situation and to cause a refill for the related table(s)?
It is essential that I don't have to reload every related table for each main record read as this could entail nearly 600 reads.
Ideally only the values for the current master record and referenced values would be present in the dataset.
A combobox show event would refill that table on demand. Any Ideas?