Search found 1 match

by Luca
Wed Nov 14, 2007 9:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: internet ip address
Replies: 33
Views: 6311

func GetMyIP( cURL ) #include "tip.ch" local cMyIP := "" local oUrl, oClient cURL := if( empty(cURL), "http://www.whatismyip.org/", cURL ) oUrl := tURL():New( cURL ) if !empty( oUrl ) oClient := tIPclient():new( oUrl ) if !empty( oClient ) oClient:nConnTimeOut := 20000 ...