<< Click to Display Table of Contents >> Navigation: Apollo VCL Components > Apollo VCL Component Reference > TApolloConnection > TApolloConnection Events > OnStatus |
Declaration
OnStatus( Sender: TComponent; const sOut: String);
Description
Fires as status messages are sent from the server to the client. Also works on local table when used with the Apollo SQL add-on.
Delphi Example
procedure TForm1.ApolloConnection1Status( Sender: TComponent; const sOut: String);
begin
StatusBar1.Caption := sOut;
end;