I am trying to use a component which named as A C# IP Address Control but it has a problem I think. because when I increase its value 1, it gives me some wrong result. forexample
ipAddressControl3.Text = "192.168.1.25";
IPAddress ipAddress1 = new IPAddress(ipAddressControl3.GetAddressBytes());
ipAddress1.Address++;
MessageBox.Show(ipAddress1.ToString());
returns : "193.168.1.25" ! but I expect "192.168.1.26"
what is the problem ?
here is the components link : A C# IP Address Control
edit : Maybe solution like this but I couldnt implemented it..