H
Hobbs
Suppose I have an ip number such as
10.11.12.13
and I want to change the 13 to 14
how do I do that?
For example, I have
Dim ip As System.Net.IPAddress
' code to assign a value to 'ip'
Dim AdrBytes() As Byte = ip.GetAddressBytes
AdrBytes(3)=14
how do I reassign the array 'bytes' into the 'ip' reference type ?
In other words, I need the reverse of getAddressBytes, SetAddressBytes ?
Tia
10.11.12.13
and I want to change the 13 to 14
how do I do that?
For example, I have
Dim ip As System.Net.IPAddress
' code to assign a value to 'ip'
Dim AdrBytes() As Byte = ip.GetAddressBytes
AdrBytes(3)=14
how do I reassign the array 'bytes' into the 'ip' reference type ?
In other words, I need the reverse of getAddressBytes, SetAddressBytes ?
Tia