I'm trying to get my app to wait 60 seconds before moving on to the next set of code. I tryed the below but it doens't wait 60 seconds as it should. Can someone help me out.

VB Code:
  1. Option Explicit
  2. Dim Counter As Integer
  3.  
  4. Private Sub Form_Load()
  5. Timer1.Interval = 10000
  6. Timer1.Enabled = True
  7. Counter = "0"
  8. Do Until Counter = 6
  9. Timer1_Timer
  10. Loop
  11.  
  12. MsgBox "60 seconds has passed"
  13. End Sub
  14.  
  15. Private Sub Timer1_Timer()
  16. Counter = Counter + 1
  17. End Sub