vote up 2 vote down star

Possible Duplicate:
Delphi, How to get all local IPs?

What's the easiest & quickest method for obtaining a local IP address of the machine in Delphi 2009 without using 3rd-party components? Thanks.

flag
Voting to close as duplicate of stackoverflow.com/questions/576538/… – mghie Jul 17 at 13:14

closed as exact duplicate by gabr, mghie, Rob Kennedy, John Saunders, eed3si9n Jul 18 at 17:03

1 Answer

vote up 3 vote down check

From: http://www.scalabium.com/faq/dct0037.htm

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) <> 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.

Inlcudes:

uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Winsock;

link|flag
1  
After changing type of namebuf to array of ansichar compiles. Thanks! – Darius Jul 17 at 13:18
1  
You should have indicated in your original question that you were using Delphi 2009, then. Remember that things can sometimes change depending on what version of Delphi you're using. – Ken White Jul 17 at 15:48
@Kishor: The function itself only requires the Winsock unit, in D7 anyway. Those others are just the common units added to a form unit. – Todd Jul 17 at 17:39
Ken, he did indicate he was using Delphi 2009. – Rob Kennedy Jul 17 at 20:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.