It looks like you're new here. If you want to get involved, click one of these buttons!
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdPing.Click
If My.Computer.Network.Ping((txtPing.Text), (txtBytes.Text)) Then
MsgBox(\"Server is Online\")
Else
MsgBox(\"Server is Offline\")
End If
End Sub