Registriert seit: 15. Jun 2010
Ort: Augsburg Bayern Süddeutschland
3.470 Beiträge
Delphi XE3 Enterprise
|
AW: IP in Label anzeigen
30. Apr 2013, 18:41
Ohne Fehlerbehandlung
Delphi-Quellcode:
Function GetExtIP: String;
var
IdHTTP: TIdHTTP;
begin
IdHTTP := TIdHTTP.Create(nil);
try
Result := IdHTTP.Get('http://checkip.dyndns.org/');
Result := Copy(Result, pos(':', Result) + 1);
Result := Trim(copy(Result, 1, pos('</', Result) - 1));
finally
IdHTTP.Free;
end;
end;
Thomas Wassermann H₂♂ Das Problem steckt meistens zwischen den Ohren
DRY DRY KISS
H₂♂ (wenn bei meinen Snipplets nichts anderes angegeben ist Lizenz: WTFPL)
|