Hallo könnt ich auch mal Auto STRG Coden also ich meine Wo die taste STRG alle 10 sec 1 mal Gedrückt wird oder schreibt mir mal bitte source Code vom vb2010 Dafür gibst Thangs und ein Dinarbot den ich sofort hochladen werde Für WinXP 32 Bit das ist mein Source code was mache ich falsch? denn er schreibt nur STRG aber drückt es nicht bitte helfen
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Enabled = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Start()
SendKeys.Send("STRG")
End Sub
End Class
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Enabled = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Start()
SendKeys.Send("STRG")
End Sub
End Class