3 adet buton 1 timer 1 tane textbox


Kod:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Timer1.Enabled = True 'Timer Aktif hale getirir End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Timer1.Enabled = False 'Timer Kapatılır SendKeys.Send("") End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Me.Close() 'onimosreturns End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick SendKeys.Send("") SendKeys.Send(TextBox1.Text) End Sub End Class

YAPAMAYANLAR İCİN https://www.youtube.com/watch?v=jq5XXckLC0k
__________________