I have a form that has several grids on it. The data sources in these grids are filtered, so the scroll bars on the grids don't look quite right. To fix this I want to
1) copy the filtered data into a CURSOR or working table
2) use the CURSOR/working table as the data source for the grid so the scroll bars work correctly
3) link the CURSOR/working table back to the base table (original data) so that any changes (additions, deletions or edits of records) is recorded there as well.
My question is, what is the most efficient way to do this? I can "double code" it - changing info in both tables simultanously, but I have a feeling there's an easier way to update the base table from the working table. Any help is much appreciated.
Thanks!
Eve
1) copy the filtered data into a CURSOR or working table
2) use the CURSOR/working table as the data source for the grid so the scroll bars work correctly
3) link the CURSOR/working table back to the base table (original data) so that any changes (additions, deletions or edits of records) is recorded there as well.
My question is, what is the most efficient way to do this? I can "double code" it - changing info in both tables simultanously, but I have a feeling there's an easier way to update the base table from the working table. Any help is much appreciated.
Thanks!
Eve