Registriert seit: 21. Jun 2002
602 Beiträge
|
Re: Rechnernamen feststellen
2. Jul 2004, 20:49
GetComputerName()
Ich hab zwar kein Windows, aber so sollte es gehen:
Delphi-Quellcode:
funtion GetNetBIOSComputerName(): String;
var
buf: array[0..MAX_COMPUTERNAME_LENGTH] of Char;
begin
GetComputerName(@buf, MAX_COMPUTERNAME_LENGTH + 1)
Result := buf;
end;
-- Crucifixion?
-- Yes.
-- Good. Out of the door, line on the left, one cross each.
|