sexta-feira, 2 de abril de 2010

Dicas Delphi - Mostrando o usuário logado no windows

Salve, salve


Incremente seu sistema, exibindo o usuário logado no windows.

function LogUser: string;
var
Registro: TRegistry;
begin
Registro := TRegistry.Create;
Registro.RootKey := HKEY_LOCAL_MACHINE;
if Registro.OpenKey('Network\Logon', false) then
begin
result := Registro.ReadString('username');
end;
Registro.Free;
end;


// Deixe seu comentário


Take care

Nenhum comentário: