Yep I'm a NOOB.
I'm trying to convert an IP ADDRESS (ex. 10.10.10.10) to a String(ex. "10.10.10.10").
Thank you for the help.
Novak
Convert IP Address to a String...NOOB
-
- Enthusiast
- Posts: 142
- Joined: Mon Sep 17, 2007 10:28 am
- Location: P.O.P
- Contact:
Code: Select all
Procedure.s ipAddressToString( ip.l)
ipStr.s=""
For i.l=0 To 3
ipStr.s=ipStr.s+Str(IPAddressField(ip.l,i))+"."
Next i
ipStr.s=Left(ipStr.s,Len(ipStr.s)-1)
ProcedureReturn ipStr.s
EndProcedure
POiNT.OF.PRESENCE group