johndelphi
IS-IT--Management
how would you get that?
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 GetWindowsUserName : string;
const
cnMaxLen=254;
var
sUserName : string;
dwUserNameLen : DWord;
begin
dwUserNameLen:=cnMaxLen-1;
SetLength(sUserName, cnMaxLen);
GetUserName(Pchar(sUserName), dwUserNameLen);
SetLength(sUserName, dwUserNameLen);
result:=sUserName;
if dwUserNameLen=cnMaxLen-1 then
result:='';
end;