Getting local IP address in Delphi - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-03T11:13:02Z http://stackoverflow.com/feeds/question/1143114 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1143114/getting-local-ip-address-in-delphi 2 Getting local IP address in Delphi [closed] Darius 2009-07-17T13:01:50Z 2009-07-17T13:09:58Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips">Delphi, How to get all local IPs?</a> </p> </blockquote> <p>What's the easiest &amp; quickest method for obtaining a local IP address of the machine in Delphi 2009 without using 3rd-party components? Thanks.</p> http://stackoverflow.com/questions/1143114/getting-local-ip-address-in-delphi/1143167#1143167 3 Answer by Kishork for Getting local IP address in Delphi Kishork 2009-07-17T13:09:58Z 2009-07-17T13:09:58Z <p>From: <a href="http://www.scalabium.com/faq/dct0037.htm" rel="nofollow">http://www.scalabium.com/faq/dct0037.htm</a></p> <pre><code>Function GetIPAddress():String; type pu_long = ^u_long; var varTWSAData : TWSAData; varPHostEnt : PHostEnt; varTInAddr : TInAddr; namebuf : Array[0..255] of char; begin If WSAStartup($101,varTWSAData) &lt;&gt; 0 Then Result := 'No. IP Address' Else Begin gethostname(namebuf,sizeof(namebuf)); varPHostEnt := gethostbyname(namebuf); varTInAddr.S_addr := u_long(pu_long(varPHostEnt^.h_addr_list^)^); Result := 'IP Address: '+inet_ntoa(varTInAddr); End; WSACleanup; end; procedure TForm1.Button1Click(Sender: TObject); begin Label1.Caption := GetIPAddress; end; end. </code></pre> <p>Inlcudes:</p> <p>uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Winsock;</p>