View Single Post
  #2 (permalink)  
Old 08-30-2006, 01:59 PM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Location: In a technologic world :p
Posts: 8,323
Credits: 0
Rep Power: 69
TcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of light
Default

Make a variable in the General section ( ex. dim S as integer )
in the form_load event make ( S = 1 )
and in the timer event make
Code:
If S = 10 Then Timer1.Enabled = False Else SOUND COMMANDS ETC
S = S + 1
Reply With Quote