|
-
April 12th, 2001, 05:56 AM
#1
How to differentiate the IP Address
I have a small problem.
I am unable to split the Ip Address.
for eg. 123.123.123.123. I want to have it in the fashion a=123, b=123,c=123, d=123 having separated bythe dot(.)
-
April 12th, 2001, 06:10 AM
#2
Re: How to differentiate the IP Address
use the split function in VB6 which will split the into an array for you
-
April 12th, 2001, 06:17 AM
#3
Re: How to differentiate the IP Address
Heres code that will do it
Dim Myarray() as string
Dim Mystring
Mystring = "123.123.123.123"
Myarray = Split(Mystring, ".")
MsgBox Myarray(0)
MsgBox Myarray(1)
MsgBox Myarray(2)
MsgBox Myarray(3)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|