vote up 1 vote down star

The code needs to be compatible with D2007 and D2009.


My Answer: Thanks to everyone who answered, I've gone with:

function ComputerName : String;
var
  buffer: array[0..255] of char;
  size: dword;
begin
  size := 256;
  if GetComputerName(buffer, size) then
    Result := buffer
  else
    Result := ''
end;
flag

63% accept rate
I usually make it even shorter by not using a separate buffer: SetLength(Result,256); SetLength(Result,GetComputerName(PChar(Result),255)); – Stijn Sanders Jul 21 at 10:37
1  
Stijn, you most certainly don't use that code. GetComputerName returns a Bool and doesn't accept a numeric literal for its second parameter. – Rob Kennedy Jul 21 at 15:03
1  
Alister, I advise you to use the named constant Max_ComputerName_Length for your buffer size instead of the magic numbers. – Rob Kennedy Jul 21 at 15:05

4 Answers

vote up 9 vote down check

The Windows API GetComputerName should work. It is defined in windows.pas.

link|flag
vote up 2 vote down

I use this,

function GetLocalPCName: String;
var
    Buffer: array [0..63] of AnsiChar;
    i: Integer;
    GInitData: TWSADATA;
begin
    Result := '';
    WSAStartup($101, GInitData);
    GetHostName(Buffer, SizeOf(Buffer));
    Result:=Buffer;
    WSACleanup;
end;

Bye

link|flag
Just as a note, this requires using the unit Winsock. – Alister Jul 21 at 0:54
vote up 4 vote down

Another approach, which works well is to get the computer name via the environment variable. The advantage of this approach (or disadvantage depending on your software) is that you can trick the program into running as a different machine easily.

Result := GetEnvironmentVariable('COMPUTERNAME');

The computer name environment variable is set by the system. To "override" the behavior, you can create a batch file that calls your program, setting the environment variable prior to the call (each command interpreter gets its own "copy" of the environment, and changes are local to that session or any children launched from that session).

link|flag
vote up 3 vote down

GetComputerName from the Windows API is the way to go. Here's a wrapper for it.

function GetLocalComputerName : string;
    var c1    : dword;
    arrCh : array [0..MAX_PATH] of char;
begin
  c1 := MAX_PATH;
  GetComputerName(arrCh, c1);
  if c1 > 0 then
    result := arrCh
  else
    result := '';
end;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.