Greetings All,
I have established a working Remote Connection to a MySQL DB using ODBC which allows me to select data in a Datagridview in my Form. The data is a list of IP addresses. What i want to do is take each IP address, parse it to My.Computer.Net work.Ping if the result returns false then the IP address is diaplayed in a TextBox1. If the result is true then the IP address is either disgarded or displayed in another TextBox field.
Fairly simple IF ELSE statement which i think needs to be used in conjunction with a DO WHILE loop.
Due to thier being numerous IP addresses to Ping the loop would be placed in a seperate thread and the actual Ping arguements altered accordingly (timeout etc)
I think with this i need some direction is the best way to get started,
Any thoughts?
Thanks in advance as always,
Sy
I have established a working Remote Connection to a MySQL DB using ODBC which allows me to select data in a Datagridview in my Form. The data is a list of IP addresses. What i want to do is take each IP address, parse it to My.Computer.Net work.Ping if the result returns false then the IP address is diaplayed in a TextBox1. If the result is true then the IP address is either disgarded or displayed in another TextBox field.
Fairly simple IF ELSE statement which i think needs to be used in conjunction with a DO WHILE loop.
Due to thier being numerous IP addresses to Ping the loop would be placed in a seperate thread and the actual Ping arguements altered accordingly (timeout etc)
I think with this i need some direction is the best way to get started,
Any thoughts?
Thanks in advance as always,
Sy
Comment