I have a multi user application in VFP 9. In which one computer is set as the server and there are three other client or terminal (say t1,t2,t3). Is it possible to identify which form is active in a particular terminal form the server?
I have to refresh a particular form when some data is inserted in to the table , if the one or all of the users are using the form. In the trigger I have call a function frmrefresh(). inside that I tried to refresh the active form in the screen.
_screen.ActiveForm.refresh
But the refresh effect is getting only for the user inserted the record. I want to get the refresh for all the users who ever using the form in the terminals t1,t2,t3. Please help me to solve this issue.