Jump to content

avatar

Members
  • Posts

    76
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

Posts posted by avatar

  1. Much better than the other one.Hope that's really yours!

    I did the other one in 2min in a forum contest !! I hadnt enough time... I'm used to make tags, sigs and generally photoshoping about an hour or more... Ανάλογα τι θα κάνω !
  2. Ok i've got the code bellow for "Visual Basic 2008" but i want it to generate numbers from a list ".txt" ex. "NumberList.txt" "1, 2, 3, 4 - ,999999"

    I dont want it to randomize nmbers !

    Public Class Form1
    
        Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            Timer1.Start()
        End Sub
    
        Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
            Timer1.Stop()
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
    
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Interval = ("5000")
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Timer1.Interval = ("2500")
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            Timer1.Interval = ("1500")
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            SendKeys.Send(Int(Val(TextBox1.Text) * Rnd()))
            SendKeys.Send("{enter}")
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    End Class

×
×
  • Create New...