TAstaServerSocket.OnAstaClientUpdate


 

Applies to
TAstaServerSocket

 

Declaration
type TAstaAutoClientUpdateEvent = procedure(Sender: TObject;
  UserName, AppName, OldVer, NewVer:
string) of object;

 

property OnAstaClientUpdate: TAstaAutoClientUpateEvent;

 

Description
The OnAstaClienUpdate event allows you to keep a server log or database record of which users have been updated.To control which clients are allowed to get new versions see the
OnAstaClientUpdateDecide event. To be able to manage different versions of client exe's that are available for udpates on the server, see Automatic Client Updates.

 

procedure TForm1.AstaServerSocket1AstaClientUpdate(Sender: TObject;

  UserName, AppName, OldVer, NewVer: string);

begin

  // write to your log or database here

end;

 

 



ASTA Overview TAstaServerSocket.OnAddDataModule TAstaServerSocket.OnClientConnect