C
call_me_sol
Well, today's project is learning how to read the classful boundry of
an IP address.
Looking at the first octet of an IP address, I need to know the class
of that address:
Class A = 1-126
Class B = 128 - 191
Class C = 192 - 223
Looking at the first octet to determine the class:
64.192.29.2 = Class A = 64.0.0.0
172.16.32.4 = Clsss B = 172.16.0.0
208.16.14.1 = Class C = 208.16.14.0
I need a userform such that if user inputs any IP address into
textbox1 the form will return the Class of the written address as a
docvariable.
Can anyone show me how to do this?
Thank you!!
an IP address.
Looking at the first octet of an IP address, I need to know the class
of that address:
Class A = 1-126
Class B = 128 - 191
Class C = 192 - 223
Looking at the first octet to determine the class:
64.192.29.2 = Class A = 64.0.0.0
172.16.32.4 = Clsss B = 172.16.0.0
208.16.14.1 = Class C = 208.16.14.0
I need a userform such that if user inputs any IP address into
textbox1 the form will return the Class of the written address as a
docvariable.
Can anyone show me how to do this?
Thank you!!