Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (1)

Powered by Vanilla. Made with Bootstrap.
[VB,NET] Ping Tool
  • Xin
    Posts: 3,251
        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
    Xin
  • undead
    Posts: 822
    Basic but helpful for beginners.