How do I change the following code so that the Beep is sounded for ten or more times? Thank you so much.
Don Harris
Private Sub Timer1_Timer()
CurrentTime = Format(Time, "hh:mm"
If CurrentTime = Text1.Text Then
Beep
MsgBox (Text2.Text), , "Personal Alarm"
Timer1.Enabled = False
Form1.WindowState = 0 'Restore form
End If
End Sub