Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//------------------------------------------------------------------------------
function ComputerName: string;
//------------------------------------------------------------------------------
var
ComputerNameLength: DWord;
begin
ComputerNameLength := MAX_COMPUTERNAME_LENGTH;
SetLength(Result, MAX_COMPUTERNAME_LENGTH);
if GetComputerName ( pchar(result), ComputerNameLength ) then
SetLength ( result, ComputerNameLength )
else
result := ''
end;