S s_alexander04 Mar 4, 2006 #1 Hello! The question is: how to check programmatically status of Wireless Lan connection? That is, is it connected or not?
Hello! The question is: how to check programmatically status of Wireless Lan connection? That is, is it connected or not?
P Pete Vickers [MVP] Mar 4, 2006 #2 Hi, if your ip address is 127.0.0.1, then you are not connected. Dim localEndPoint As New IPEndPoint(Dns.Resolve(Dns.GetHostName()).AddressList(0), 0) If localEndPoint.Address.ToString = "127.0.0.1" Then .... Pete
Hi, if your ip address is 127.0.0.1, then you are not connected. Dim localEndPoint As New IPEndPoint(Dns.Resolve(Dns.GetHostName()).AddressList(0), 0) If localEndPoint.Address.ToString = "127.0.0.1" Then .... Pete