Q&A

  • [질문]내 컴퓨더명을 가져오려면 어떻게...
내 컴퓨더명을 가져오려면 어떻게하나요?
2  COMMENTS
  • Profile
    김병윤 2009.04.08 00:44
    이 함수를 이용해보세요

    function GetComName():String;
    var
    computer : PChar;
    csize : DWORD;
    begin
    csize := MAX_COMPUTERNAME_LENGTH + 1;
    Try
    GetMem(computer, csize);
    IF Windows.GetComputerName(computer, csize) Then Result := computer;
    Finally
    FreeMem(computer);
    End;
    end;
  • Profile
    Paganini 2009.04.08 17:44
    답변감사합니다.