1
vote
4answers
235 views
What’s the best method for getting the local computer name in Delphi
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: …
