출처 = http://www.delphi.co.kr/index.php?mid=lecture&page=23&document_srl=156935
uses WinSock ???
function uf_GetIpAddr: string;
var
p : PHostEnt;
s : Array[0..128] Of Char;
begin
GetHostName(@s, 128);
p := GetHostByName(@s);
result := iNet_Ntoa(pInAddr(p^.H_ADDR_LIST^)^);
end;
조회 수 : 2599
2005.10.31 (11:28:21)
'델파이 > 프로그래밍 Tip' 카테고리의 다른 글
델파이 JPEG 관련 (0) | 2015.04.09 |
---|---|
Install Shield 설치 파일의 권한 설정 방법 (0) | 2015.02.26 |
델파이 설치된 프로그램 목록 구하기 (0) | 2013.06.05 |
델파이 네트워크 카드의 ipaddress, subnetmast, defaultgateway 가져오기 (0) | 2013.06.05 |
델파이 폼을 바탕화면으로... (0) | 2011.02.28 |