Ver Mensaje Individual
  #2  
Antiguo 14-06-2005
Avatar de Ohcan
[Ohcan] Ohcan is offline
Miembro Premium
 
Registrado: ago 2004
Ubicación: Madrid (España)
Posts: 119
Reputación: 20
Ohcan Va por buen camino
Para el nombre del equipo:
Código Delphi [-]
function GetComputerName:String;
var
  pcComputer:PChar;
  dwCSizeWORD;
begin
  dwCSize := MAX_COMPUTERNAME_LENGTH+1;
  GetMem(pcComputer,dwCSize);
  try
    if Windows.GetComputerName(pcComputer,dwCSize) then Result := pcComputer;
  finally
    FreeMem(pcComputer);
  end;
end;
__________________
La violencia es el último recurso del incompetente. (Salvor Hardin)
Responder Con Cita