In a split database consider the following scenario.
I have a main form which is essentially a list of employees. Editing an employee takes place in a pop up dialog. When I close the dialog I'd like to update the data in my main form. I'm doing this by means of an event: Dialog.OnUnload will trigger a requery of the main form.
However, since my DB is now split, it takes just a bit longer to update the record in the back end. And also for the form to notice the changes. In other words, if I requery right after I close the edit form, it will be to soon for the main form to see the changes.
I'm looking for tips that might help resolve this problem.
I have a main form which is essentially a list of employees. Editing an employee takes place in a pop up dialog. When I close the dialog I'd like to update the data in my main form. I'm doing this by means of an event: Dialog.OnUnload will trigger a requery of the main form.
However, since my DB is now split, it takes just a bit longer to update the record in the back end. And also for the form to notice the changes. In other words, if I requery right after I close the edit form, it will be to soon for the main form to see the changes.
I'm looking for tips that might help resolve this problem.