E
Earl
I'm posting this question in both the SqlServer and ADO.Net newsgroups in
the event there might be a programmatic answer on either the frontend or the
backend.
Imagine a small network running the same app attached to SqlExpress. A
listbox is filled via a datareader with contact names using an autonumber ID
as the selected value.
User 1 edits a contact name. Upon firing the Update, the app reloads the
contact listbox on User 1's copy of the app.
User 2 adds a new contact. Upon firing the Insert, the app reloads the
contact listbox on User 2's copy of the app.
But User 1 does not have the new contact added by User 2, and User 2 does
not have the updated name of the contact edited by User 1.
Is there a better method of showing/updating/notifying User 1 that a new
contact exists (and to notify User 2 that a name has been changed) other
than waiting for the next time the contact listbox gets reloaded on those
respective systems? Perhaps "notify" is the incorrect word, I just would
like those changes to be shown in all copies of the app that are on the
network.
the event there might be a programmatic answer on either the frontend or the
backend.
Imagine a small network running the same app attached to SqlExpress. A
listbox is filled via a datareader with contact names using an autonumber ID
as the selected value.
User 1 edits a contact name. Upon firing the Update, the app reloads the
contact listbox on User 1's copy of the app.
User 2 adds a new contact. Upon firing the Insert, the app reloads the
contact listbox on User 2's copy of the app.
But User 1 does not have the new contact added by User 2, and User 2 does
not have the updated name of the contact edited by User 1.
Is there a better method of showing/updating/notifying User 1 that a new
contact exists (and to notify User 2 that a name has been changed) other
than waiting for the next time the contact listbox gets reloaded on those
respective systems? Perhaps "notify" is the incorrect word, I just would
like those changes to be shown in all copies of the app that are on the
network.