Hello everyone im newbie,

I have a question about vb2010.

I have a few timers and a few buttons. One button start, one button stop the program.
My timer works with this way:

Code:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        SendKeys.Send("{1}")
    End Sub
    Private Sub Timer2_Tick(ByVal sender As System.Object,
...