- Dim Ip As String
- Ip = TextBox2.Text
- Dim a As String
- a = "Device is Up and Runing"
- Dim b As String
- b = "Ping Request Time Out"
- If My.Computer.Network.Ping(Ip) Then
- 'MsgBox("Device is Up and Runing")
- ListBox1.Items.Add(a)
- Else
- 'MsgBox("Ping request timed out.")
- ListBox1.Items.Add(b)
Using Timer
Hello Guys please i'm working on my final year project so i'm developing a network tool that will continously ping and ip after some set of intervals, so when ever a network device is down it send and sms alert to the technician, here is what so far plss help
Replies
Know the answer? Post it — somebody with the same question will find it here.