I'm not sure I can relay my question properly but I'll try.
I created a single form TMSWeb app that is used by several users accessing a SQLite DB. When user1 makes an update I want those updates to be seen by user2, 3, 4 etc.
Is there a "best practices" for TMSWeb to keep user screens updated across multiple users?
Perhaps a data set Close and Load tied to a timer?
I did a search before I posted this and saw pieces of code where people are doing scree updates. I understand how to do that but nothing regarding keeping screens/data in sync.
A possible solution is to use WebSocket communication. This enables that the server can send notifications to the clients when data was updated on the server requesting the client to reload the data.
There is a websocket example under Demo\FNC\Chat The websocket communication is NOT built in XData, it is something you would implement in parallel to the XData server that has as role to notify the clients of server side changes that require a data reload.
hang on.... I'd have to monitor connections, pull IP's to notify each person that had a connection at some point? i take back what I said about "not sounding too bad" lol....