Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Public Function check() As Object
  2. ServicePointManager.DefaultConnectionLimit = Integer.MaxValue
  3. Dim Weber As WebClient = New WebClient
  4. Dim Press As String = Weber.DownloadString("https://instacheck.cf/instacheck/check.php?user=" + TextBox2.Text)
  5. If Press.Contains("""error"":""{""code"":0"",""message"":""No Error""},""users"":[]""") Then
  6. ' اليوزر متاح
  7. End If
  8. Me.count += 1
  9. Label1.Text = count
  10. Dim Lodet As Thread = New Thread(AddressOf check)
  11. Lodet.Start()
  12.  
  13. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement