Ver Mensaje Individual
  #4  
Antiguo 27-08-2008
Avatar de Casimiro Noteví
Casimiro Noteví Casimiro Noteví is offline
Merodeador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.669
Reputación: 10
Casimiro Noteví Tiene un aura espectacularCasimiro Noteví Tiene un aura espectacular
Puedes ver la lista de usuarios conectados mediante el componente IBDataBaseInfo y la propiedad UserNames.

Cita:
TIBDataBaseInfo.UserNames
Returns the names of all users currently attached to the database.
property UserNames : TStringList;
Código:
procedure TForm1.Button1Click(Sender:TObject);
var
  i:integer;
begin
  for i:=0 to IBDataBaseInfo1.UserNames.Count -1 do
    Memo1.Lines.Add( IBDataBaseInfo1.UserNames[i]);
end;
Responder Con Cita