selam arkadaşlar Zamanlı flood programı yapmak istiyorum nasıl yapıcam her 10 saniyede bir atmasını istiyorum nasıl yapıcam ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
How to make a Simple Spam Bot in Visual Basic 2008 Express Edition - YouTube
buraya bakarak yapabilirsin. bir teşekkürü çok görme
Private Sub Command1_Click()
Timer1.Enabled = True
Timer2.Enabled = False
Timer3.Enabled = False
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Timer2.Enabled = True
Timer3.Enabled = False
End Sub
Private Sub Command3_Click()
Timer1.Enabled = False
Timer2.Enabled = False
Timer3.Enabled = True
End Sub
Private Sub Command4_Click()
Timer1.Enabled = False
Timer2.Enabled = False
Timer3.Enabled = False
End Sub
Private Sub Command5_Click()
Me.Close()
End Sub
Private Sub Timer1_Timer()
SendKeys.Send(Textbox1.Text)
SendKeys.Send("{Enter}")
End Sub
Private Sub Timer2_Timer()
SendKeys.Send(Textbox1.Text)
SendKeys.Send("{Enter}")
End Sub
Private Sub Timer3_Timer()
SendKeys.Send(Textbox1.Text)
SendKeys.Send("{Enter}")