Advertisement
Guest User

Untitled

a guest
May 28th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Public Class Form1
  2.  
  3. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  4. Timer1.Start()
  5. End Sub
  6.  
  7. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  8. MsgBox("Hallo Test Timer 1")
  9. Timer1.Stop()
  10. Timer2.Start()
  11. End Sub
  12.  
  13. Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
  14. MsgBox("Hallo Test Timer 2")
  15. Timer2.Stop()
  16. Timer1.Start()
  17. End Sub
  18. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement