[Solved]Adding Timer?Ok so i just made a very basic spammer Start/Stop buttons and text input Spams every 10 MS But i want to be able to adjust the speed How? Thanks People!
Originally Posted by Golden. Ok so i just made a very basic spammer Start/Stop buttons and text input Spams every 10 MS But i want to be able to adjust the speed How? Thanks People! You must've created a timer for it. Select the timer in the designer view and goto properties and set interval for speed. 1000 = 1 second Programmatically you can set it as: Timer1.Interval = 1000 Replace Timer1 with timer's name and 1000 with interval. Hope this helps !!
Originally Posted by FLAMESABER You must've created a timer for it. Select the timer in the designer view and goto properties and set interval for speed. 1000 = 1 second Programmatically you can set it as: Timer1.Interval = 1000 Replace Timer1 with timer's name and 1000 with interval. Hope this helps !! Yeah, but i want to add a textbox so that i can put like 1 in the textbox and it will spam every 1 second
Originally Posted by Golden. Yeah, but i want to add a textbox so that i can put like 1 in the textbox and it will spam every 1 second Double click the textbox and add the following code: Code: Timer1.Interval = Cint(Textbox1.text)*1000 I suggest you use NumericUpdown control instead of Textbox1...Because it can give errors if the user does not enters a numeric value. If you use NumericUpDown control then the code will be: Code: Timer1.Interval = Cint(NumericUpDown1.Value)*1000
Originally Posted by Golden. No, got an error now.. Check out the video in that rar What's wrong with a screenshot -.-
Originally Posted by lolland C'été moi. Lol, No dude, I think that was me .. Anyways, glad to see the problem is solved... /thread
Originally Posted by Golden. No, got an error now.. Check out the video in that rar Virus scan? Just upload to YouTube.