How would I go about making a function with one parameter (IP Address) which validates the existence of an IP Address? Something Like...
JD Solutions
Code:
function IPExists(IPAddr: String): Bool;
begin
Result:= False;
//Some check which returns 'Result:= True' if IP is found
end;
JD Solutions