Hallo zusammen, hab mal eine ganz dumme Frage...
Was mache ich falsch?
Der Button wechselt die Position im Sek. Tackt und ich möchte die Position an einem bestimmten Punkt abfagen.
Danke für eure Hilfe
Was mache ich falsch?
Der Button wechselt die Position im Sek. Tackt und ich möchte die Position an einem bestimmten Punkt abfagen.
Danke für eure Hilfe
Quellcode
-
- Private Sub Startform1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
- Button1.Location = New Point(Button1.Location.X + 10, Button1.Location.Y + 10)
- End Sub
- Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
- If Button1.Location.X = 100 Then
- MsgBox("bin da")
- Else
- Button1.Location = New Point(Button1.Location.X + 10, Button1.Location.Y + 10)
- End If
- End Sub