Advertisement
hungcoder92

Facebook Bot 3

Apr 18th, 2022
1,712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.34 KB | None | 0 0
  1. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  2.         x = x + 1
  3.         If x > ListBox1.Items.Count Then
  4.             Timer1.Stop()
  5.         Else
  6.             ListBox1.SelectedIndex = x - 1
  7.             WebBrowser1.Navigate(ListBox1.Items(x - 1).ToString)
  8.         End If
  9.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement