Advertisement
Lauda

Untitled

May 6th, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.59 KB | None | 0 0
  1. Public Class Form1
  2.  
  3. #Region "Check Server Status"
  4.     Private Sub CheckServerStatus()
  5.         Dim tryconnect As New TcpClient
  6.  
  7.         Try
  8.             tryconnect.Connect("IP/DNS", PORT)
  9.             Label1.ForeColor = Color.Lime
  10.             Label1.Text = "Online"
  11.         Catch ex As Exception
  12.             Label1.ForeColor = Color.Red
  13.             Label1.Text = "Offline"
  14.         End Try
  15.     End Sub
  16. #End Region
  17.  
  18.  
  19.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  20.         CheckServerStatus()
  21.     End Sub
  22. End Class
  23. #End Region
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement